Viewing 5 reply threads
You must be logged in to reply to this topic.
Hi,
How to remove “May We Suggest?” on the bottom of the page?
Please see the URL below.
https://www.aprestocare.com/wp-content/uploads/2020/04/2020-04-23.png
Kind Regards,
Please modify the 404.php and search.php files on wp-content/themes/folie
and on functions.php on this function: codeless_creative_search
Let me know
Thanks
Thank you very much!
I changed the files below. Is it correct?
comment out on functions.php
/**if( codeless_get_mod( ‘search_type’, ‘creative’ ) == ‘creative’ )
*wp_enqueue_style(‘codeless-creative-search’, get_template_directory_uri() . ‘/css/codeless-creative-*search.css’);
*/
and comment out on 404.php and search.php
<!– <div class=”search__col”>
<h3><?php esc_attr_e(‘May We Suggest?’, ‘folie’ ) ?></h3>
<p><?php echo codeless_all_tags_html() ?></p>
</div>–>
However still all tags are shown on the bottom of the page.
Please let me know how to delete in details?
Best Regards,
On includes/codeless_hooks.php please comment this line:
add_action( 'codeless_hook_wrapper_after', 'codeless_creative_search', 10 );
or delete it.
Thanks
Now it’s fixed. Thank you so much!
Do we have to the same every theme update?
You’re welcome :)
If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)
https://themeforest.net/downloads
Thank You so much
add this:
remove_action( 'codeless_hook_wrapper_after', 'codeless_creative_search' );
on child theme functions.php
You must be logged in to reply to this topic.