Welcome đ
OK đ
Yes install and activate it. Here is more information about child theme http://freewptp.com/why-and-how-to-create-wordpress-child-theme/
Hi @edugsdf,
I hope you are well today and thank you for your question.
The theme update overwrites whole theme directory therefore you have to take backup of languages directory and restore it after theme update.
In the future version of theme we will change this functionality so that you can either save translation files in wp-content/languages directory or save it in the child theme directory.
Best regards,
Shufflehound team
The shared code is working fine for me by adding the widget class Widget_Recent_Posts code in the functions.php file of my child theme.
This class is wrapped in class_exists condition as displayed below therefore this class is over writable just by copying it in the child theme file and without changing any theme files.
if( !class_exists('Widget_Recent_Posts') ) : class Widget_Recent_Posts extends WP_Widget {
May be you are doing something wrong which is causing it not to work simply by overwriting widget class.
PS: just for your further update, I found a small error in the code of your âShufflehound Recent Postsâ :
$widget_ops = array( 'description' => esc_html__( 'Recent Postss', 'jevelin' ) );
Postss with 2 s (line 7 of the class-widget-recent-posts.php) and the same in your javelin.pot
Thank you for notifying us about this.
I could confirm the issue on my test site therefore notified the theme developer about this so that it will be fixed.
The issue will be fixed ASAP.
Your help here is really appreciated.
Hi @RCA_86,
I hope you are well today and thank you for your question.
Could you please share me your site URL where it’s displaying so that i can help you to achieve it?
Best regards,
Shufflehound team
You are always welcome here đ
You are most welcome here đ
Awesome great to see it is working for you now.
Please advise if you have more questions.
Have a fantastic day!
Thank you for sharing the site details.
I can see on your site the image title is displaying as shown in the attached screenshots.
Solution for this topic
To resolve the mobile logo issue please try using the below custom CSS code.
body.home .sh-sticky-mobile-header-active img.sh-sticky-logo { display: block; } body.home .sh-sticky-mobile-header-active img.sh-standard-logo, body.home .sh-sticky-mobile-header-active img.sh-light-logo { display: none; }
I don’t see the shared CSS code on your site.
Where have you added it?
Also please clear W3 Total Cache after using it.
We will update you here after fixing it in the theme.
Ok sure we will resolve it in next update.
Hi @vukasincolic_,
I hope you are well today and thanks for posting here.
Do you mean the social icons the header is displaying on new row?
If yes then this is because there isn’t enough space to fit it in one line.
Could you please tell me how you want it to display and also share me your site URL where it is displaying?
Best regards,
Shufflehound team
Sorry to tell you but no updates yet.
Solution for this topic
Hi Brain,
Sorry to hear of the problem you are having.
I have tested it on my test site and it’s working fine for me using latest version of Jevelin theme as displayed in the attached screenshot.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Best regards,
Shufflehound team
Hi @urbansurfers,
I hope you are well today and thank you for your question.
You can override the ‘Shufflehound Recent Posts’ widget in a child-theme by adding following widget class Widget_Recent_Posts in the functions.php file of your child theme.
class Widget_Recent_Posts extends WP_Widget { function __construct() { $widget_ops = array( 'description' => esc_html__( 'Recent Postss', 'jevelin' ) ); parent::__construct( false, esc_html__( 'Shufflehound Recent Posts', 'jevelin' ), $widget_ops ); } function widget( $args, $instance ) { extract( $args ); $params = array(); foreach ( $instance as $key => $value ) { $params[ $key ] = $value; } $title = $before_title . $params['widget-title'] . $after_title; unset( $params['widget-title'] ); $filepath = get_template_directory() . '/inc/widgets/recent-posts/views/widget.php'; $instance = $params; $before_widget = str_replace( 'class="', 'class="widget_social_links ', $before_widget ); if ( file_exists( $filepath ) ) { include $filepath; } } function update( $new_instance, $old_instance ) { $instance = wp_parse_args( (array) $new_instance, $old_instance ); return $instance; } function form( $instance ) { $titles = array( 'widget-title' => esc_html__( 'Recent Posts Title:', 'jevelin' ), 'items_per_page' => esc_html__( 'Items Per Page:', 'jevelin' ), ); $instance = wp_parse_args( (array) $instance, $titles ); foreach ( $instance as $key => $value ) { ?> <p> <label><?php echo esc_attr( $titles[ $key ] ); ?></label> <input class="widefat widget_social_link widget_link_field" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>" type="text" value="<?php echo ( $instance[ $key ] === $titles[ $key ] ) ? '' : esc_attr( $instance[ $key ] ); ?>"/> </p> <?php } } }
Best regards,
Shufflehound team
Hi @michelledenise,
Sorry to hear of the problem you are having.
To resolve the issue please try using the solutions posted in the following topics.
https://support.shufflehound.com/forums/topic/cant-install-demo-content-2/
https://support.shufflehound.com/forums/topic/problem-with-demo-content-instalation/
https://support.shufflehound.com/forums/topic/landing-2-full/
Best regards,
Shufflehound team