Weboccult Technologies Pvt Ltd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mobile menuHi @elfeja Yes. This screenshot link is accessible. I gave you proper css earlier for your required mobile menu section. Media query is used to set css for particular device size. Just put this css at the end of your css file and check.
@media (max-width : 767px){ ul#mobile_menu { background-color:red; } }
Forum: Fixing WordPress
In reply to: Issues when publishing articlesHi @odenwar Please checkout this link. I hope this will be helpful to you.
https://www.ads-software.com/support/topic/updating-failed-you-are-probably-offline/Forum: Fixing WordPress
In reply to: Product page customization.Hi @thekarmastore Can you please let me know how you are doing product selling functionality? I mean you are using any e-commerce plugin or custom code. So I can suggest you accordingly. Happy to help you.
Forum: Fixing WordPress
In reply to: Search Results Page missing CSSHi @jdodigital You need to check following points to make search page running.
1. Check in file from where css file is enqueue. Check that your css file is included for search page or not.
2. From view source, it looks like minify option is enable. Please check by disabling that option. Minified css is showing on your home page view source which is not in search page view source.Let me know if you need more help in this.
Forum: Fixing WordPress
In reply to: Mobile menuHi @elfeja Your screenshot link is accessible but not able to see red area where you want to change color. Also let me know where you are putting media query in css file.
Forum: Fixing WordPress
In reply to: WordPress Login Error Page PluginsHi @milmirandafernandes You need to edit plugin file to resolve this warning. Open OneClickDemoImport.php file from path displaying with warning and replace private keyword with public keyword at mentioned line number. I hope this will be helpful to you.
Forum: Fixing WordPress
In reply to: Rename WordPress and WooCommerce MenuHi @skyhightech Please refer this link.
I hope this will be useful to you.
Forum: Developing with WordPress
In reply to: Set default value for add_settings_fieldHi @lucas1559 You can do like this.
if ( get_option( 'my_setting' ) === false ) // if no data saved update_option( 'my_setting', 'defaultvalue' );
Let me know this is helpful to you or not.
Forum: Fixing WordPress
In reply to: help, I cannot enter 1 Kg as basic price unitCan you share screenshot here so i can check issue for you
Forum: Fixing WordPress
In reply to: Mobile menuHi @elfeja Your link is not accessible. Can you please share screenshot so I can give you exact css?
Forum: Everything else WordPress
In reply to: About plugin nameHi @luizbills As per standards used for plugin in wordpress, You may not begin the display name with someone else’s trademarked term. So better to use same name you used in readme file.
Forum: Fixing WordPress
In reply to: Making image blocks searchableTry adding below code in your theme functions.php file to modify default wordpress search with attachment. Your image name must match search keyword to work.
function attachment_search( $query ) { if ( $query->is_search ) { $query->set( 'post_type', array( 'post','page', 'attachment' ) ); $query->set( 'post_status', array( 'publish', 'inherit' ) ); } return $query; } add_filter( 'pre_get_posts', 'attachment_search' );
I hope this will help you!
Forum: Fixing WordPress
In reply to: Woocommerce still linking to old shop pageWhen i access your site with /shop it redirected to the below page https://www.essench.co.uk/shop-botanical-skincare/ – shows 404
Check any redirection plugin is active and you have set redirection for /shop to /shop-botanical-skincare page.
Also refer below article how to set shop page in wooommerce.
Forum: Fixing WordPress
In reply to: Looking for plugin chat with customerCheck live chat plugin available in wordpress as per your requirement and features
https://www.ads-software.com/plugins/tidio-live-chat/
https://www.ads-software.com/plugins/pure-chat/Forum: Fixing WordPress
In reply to: Looking for wordpress calendar plugin with android appCheck below events calendar plugin whic uses google calendar events might be helpful for you.
https://www.ads-software.com/plugins/events-calendar-for-google/