Home › Forums › WoodMart support forum › Appearance > Widgets > WoodMart Author Information > Author link
Appearance > Widgets > WoodMart Author Information > Author link
- This topic has 13 replies, 2 voices, and was last updated 1 year, 1 month ago by Luke Nielsen.
-
AuthorPosts
-
September 14, 2023 at 4:45 pm #496005
Jeriss Cloud CenterParticipantIn the above mentionned widget, the “Autor Link” simply doesn’t work
We click and nothing happens.
- This topic was modified 1 year, 2 months ago by Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.September 15, 2023 at 10:28 am #496224
Luke NielsenKeymasterHello,
Please, disable all plugins that are not related to our theme and provide us with your admin access. We will log in and check what is wrong there. You can leave only the following plugins that are required for our theme:
WoodMart core
WooCommerce
ElementorThank you in advance
Kind Regards
September 17, 2023 at 6:16 pm #496758
Jeriss Cloud CenterParticipantIssue reproduced on staging in private (with extra no plugins)
September 18, 2023 at 11:19 am #496910
Luke NielsenKeymasterHello,
In the next update, this issue will be fixed.
Kindly accept our sincere apologies for the inconvenience caused to you and don’t hesitate to reach out if you have any additional questions.
Kind Regards
September 18, 2023 at 12:17 pm #496934
Jeriss Cloud CenterParticipantIn the meantime, could you deploy a patch please ? Thanks
September 18, 2023 at 12:33 pm #496950
Luke NielsenKeymasterHello,
If other customers are faced with the same issue, then we will create a patch.
Thanks for your time and have a great day.
Kind Regards
September 18, 2023 at 3:48 pm #497038
Jeriss Cloud CenterParticipantBut this is blocking me in my work. I need an urgent fix for this, because I need to present the final version of this page fully functionnal. Please deploy a patch.
September 18, 2023 at 4:17 pm #497066
Luke NielsenKeymasterHello,
You can use the below code to fix it now:
function woodmart_shortcode_author_area($atts, $content) { $output = $class = ''; extract( shortcode_atts( array( 'title' => '', 'author_name' => '', 'image' => '', 'img_size' => '800x600', 'link' => '', 'link_text' => '', 'alignment' => 'left', 'style' => '', 'woodmart_color_scheme' => 'dark', 'css_animation' => 'none', 'el_class' => '', 'woodmart_css_id' => '', 'css' => '', ), $atts ) ); $img_id = preg_replace( '/[^\d]/', '', $image ); if ( $img_id ) { $image_output = woodmart_otf_get_image_html( $img_id, $img_size, array(), array( 'class' => 'author-area-image' ) ); } $class .= ' text-' . $alignment; $class .= ' color-scheme-' . $woodmart_color_scheme; $class .= woodmart_get_css_animation( $css_animation ); $class .= ' ' . $el_class; $class .= ' wd-rs-' . $woodmart_css_id; if ( function_exists( 'vc_shortcode_custom_css_class' ) ) { $class .= ' ' . vc_shortcode_custom_css_class( $css ); } if ( ! str_contains( $link, 'url:' ) ) { $link = 'url:' . $link; } ob_start(); ?> <div class="author-area set-mb-m reset-last-child<?php echo esc_attr( $class ); ?>"> <?php if ( $title ) : ?> <h3 class="title author-title"> <?php echo esc_html( $title ); ?> </h3> <?php endif ?> <?php if ( isset( $image_output ) ) : ?> <div class="author-avatar"> <?php echo $image_output; //phpcs:ignore. ?> </div> <?php endif; ?> <?php if ( $author_name ) : ?> <h4 class="title author-name"> <?php echo esc_html( $author_name ); ?> </h4> <?php endif ?> <?php if ( $content ) : ?> <div class="author-area-info"> <?php echo do_shortcode( $content ); ?> </div> <?php endif ?> <?php if ( $link != '' ) : ?> <a <?php echo woodmart_get_link_attributes( $link ); ?> class="btn btn-style-link btn-color-default"> <?php echo esc_html( $link_text ); ?> </a> <?php endif; ?> </div> <?php $output = ob_get_contents(); ob_end_clean(); return $output; }
Kind Regards
September 21, 2023 at 12:14 pm #497958
Jeriss Cloud CenterParticipantCome on guys please deploy a patch …. what’s the point of you creating an entire Patching system if you refuse to use it when needed ??
- This reply was modified 1 year, 1 month ago by Jeriss Cloud Center.
September 21, 2023 at 12:31 pm #497975
Luke NielsenKeymasterHello,
As I mentioned above, If other customers are faced with the same issue, then we will create a patch.
Don’t hesitate to let me know if you need any further help or any other info.
Kind Regards
September 29, 2023 at 12:12 am #500074
Jeriss Cloud CenterParticipantWhy should I care about other customers? I’m the one who raised the issue, I’m the one impacted by this problem. Once again, please deploy a patch.
September 29, 2023 at 9:52 am #500129
Luke NielsenKeymasterHello,
As I mentioned above, If other customers are faced with the same issue, then we will create a patch.
I do hope you would remain as our valued customer and thank you for your time.
Kind Regards
October 5, 2023 at 10:56 am #501777
Jeriss Cloud CenterParticipantYou can close this ticket, thanks
October 5, 2023 at 11:17 am #501785
Luke NielsenKeymasterHello,
You are welcome! In case you need any additional help, I’d be more than happy to assist you.
Have a good day!
Kind Regards
-
AuthorPosts
The topic ‘Appearance > Widgets > WoodMart Author Information > Author link’ is closed to new replies.
- You must be logged in to create new topics. Login / Register