Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi Mike,
Please post in your site url.Regards,
PratikPratik
MemberPlease contact sales in the link mentioned above for any financnce related issues.
Pratik
MemberWe have mentioned the updating process clearly in theme instructions. We do not have automatic update feature.
Pratik
MemberYou can find the latest version of you theme here: https://catchthemes.com/my-account/
Download the file. Then install catch-updater plugin and follow the instructions as described in video here: https://youtube.com/watch?v=W95SuabDZi8.Pratik
MemberUpdating pro themes process is a bit different. Check out the instructions at https://catchthemes.com/theme-instructions/catch-adaptive-pro/#updating.
Pratik
MemberFor now, can you try updating the theme to latest version and see if your initial problem is solved or not?
Pratik
MemberI have checked and the update messages are working fine. Is there any security plugin? Or any security measures from the server. Updates rolled out more than three days ago.
Pratik
MemberOnly your account is facing this issue. There are no complaints from our other users. Please check our forum. Maybe your server has blocked access to outside sites so it cannot reach out update api. There is usually an update message. If your account doesn’t show latest version of theme, then please contact our sales team at https://catchthemes.com/contact-us/ to get this sorted out.
Regards,
PratikPratik
MemberWe pushed it out a couple of days ago. Please check your my accounts page and update accordingly.
Pratik
MemberHi @filip_1,
I am working on this. In the mean time, can you let me know exactly which language you, have chosen in WordPress admin section?
Regards,
PratikPratik
MemberHi @Kamyar,
The updates should start rolling out today. If you want it fixed asap, you can just remove array_filter function from that line. Be careful though, if you are not familier with coding in php, you might break your site.
Regards,
PratikPratik
MemberHi @Kamyar,
It looks like this is the issue with only some version of php. I have fixed and patched up the issue. Please wait for the next update which will be soon. It should fix up this error.
Let me know if it does not.
Regards,
PratikPratik
MemberOk not please try adding following function in your child theme’s functions.php file.
/** * Function to update sidebars */ function clean_magazine_child_update_sidebars() { unregister_sidebar( 'primary-sidebar' ); unregister_sidebar( 'header-right' ); unregister_sidebar( 'footer-1' ); unregister_sidebar( 'footer-2' ); unregister_sidebar( 'footer-3' ); //Primary Sidebar register_sidebar( array( 'name' => __( 'Primary Sidebar', 'clean-magazine' ), 'id' => 'primary-sidebar', 'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">', 'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', 'description' => __( 'This is the primary sidebar if you are using a two column site layout option.', 'clean-magazine' ), ) ); //Header Right register_sidebar( array( 'name' => __( 'Header Right', 'clean-magazine' ), 'id' => 'header-right', 'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">', 'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', 'description' => __( 'This is the header right widget area. It typically appears on the right of the site title or logo. This widget area is not equipped to display any widget, and works best with a search form, social icons widget, Advertisement Widget or possibly a text widget.', 'clean-magazine' ), ) ); for( $i=1; $i <= 3; $i++ ) { register_sidebar( array( 'name' => sprintf( __( 'Footer Area %d', 'clean-magazine' ), $i ), 'id' => sprintf( 'footer-%d', $i ), 'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">', 'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', 'description' => sprintf( __( 'Footer %d widget area.', 'clean-magazine' ), $i ), ) ); } } add_action( 'widgets_init', 'clean_magazine_child_update_sidebars', 11 );Pratik
MemberHi @cmsully7,
If you liked our support and theme, please leave us a review at: https://wordpress.org/support/theme/catch-responsive/reviews/#new-postRegards,
PratikPratik
MemberHi @soledad-gonzalex-diaz,
Do you mean title to Quiénes somos, Investigación and Publicaciones, if thats so, goto Appearance=> Customize=>Theme Options => Featured Content => Headline for Featured ContentLet me know how it goes.
Regards,
PratikPratik
MemberHi @Kamyar,
Can you post in your site url?
Regards,
PratikPratik
MemberHI @discoman,
For this, you need to make modifications via child theme. Please make a child theme first. The instructions are here: http://catchthemes.com/blog/create-child-theme-wordpress/
After this, please let me know and I will provide you with functions.
Regards,
PratikPratik
MemberHi @Kranz,
To remove the Menu, you need to make customizations via child theme. However, if you remove menu, it will take the show the first element when in any site(DE/JP).First, create a child theme. Details about child theme is here: http://catchthemes.com/blog/create-child-theme-wordpress/
Then in the child theme’s functions.php file, add following code:
/** * Remove default navigation menu to nav menu * Used while viewing on smaller screen */ function catchkathmandu_menu_alter( $items, $args ) { return $items; } endif; // catchkathmandu_menu_alterRegards,
PratikPratik
MemberHi @elliottrae,
There is no simple way yo do it. Please hire a customizer.
Pratik
MemberHi @Didier,
It seems so, but I checked and it requires a bit more than that. Sorry.
Regards,
Pratik -
AuthorPosts
