bsfankusht
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Header & Footer Builder] OverlapHello?? @rthi
Thanks for getting in touch.
It is difficult to understand the issue without looking into it.
Could you please share the website URL so we can check the issue on your website?
I am looking forward to hearing from you.
Kind regards,
Ankush ??Forum: Plugins
In reply to: [Elementor Header & Footer Builder] Megamenu not loadingHello @ohmypet
Thanks for getting in touch.
I had visited your site, and it seems that the cache plugin Autoptimize is causing the issue.
Could you please deactivate the cache plugin, clear the server-side cache and let me know how it goes?
Kind regards,
Ankush ??Hello @debhallett
If you set the Customizer Header to None or not the Beaver Builder Header will orerride it.
I hope that helps. Please let me know if you need any further help.
Hi @gusisilva,
I had checked, and these warnings are related to a third-party library that we had used in the UABB Login Form. So, once the library author fix the issues will update the library in the UABB Plugin.
Further, these are the only warnings related to deprecated functions in the library, and this will not break any core functionality in the plugin.
But if you are facing any issue related to the functionality, do let us know.
Kind regards,
Ankush ??Hey,
Thanks for the link. I have posted my idea on the link.
Meanwhile, can I get any filter or CSS to make it work?
Forum: Plugins
In reply to: [Page View Count] Display Views Count on Post MetaHi @kintango,
To display a views number in posts meta, ASTRA Theme provides a filter “astra_single_post_meta” which you can use and show the views in post meta.For this, you just have to paste this code in the function.php file in “ASTRA Child Theme”.
This code will work only if ‘Page View Count’ Plugin installs an activate, as we have used this plugin functions and classes.add_filter( 'astra_single_post_meta' , 'astra_child_show_views' ); function astra_child_show_views( $output ) { if( ! is_callable('A3_PVC::pvc_stats_counter') ) { return $output; } //It will return the count in post meta. return $output . A3_PVC::pvc_stats_counter(get_the_ID()); }
Note: Don’t paste this code in the original ASTRA theme, the code will be lost as you update the Theme.
- This reply was modified 5 years, 6 months ago by bsfankusht.
- This reply was modified 5 years, 6 months ago by bsfankusht.
- This reply was modified 5 years, 6 months ago by bsfankusht.
- This reply was modified 5 years, 6 months ago by bsfankusht.