Carlos Bravo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Missing Menu OptionsThis may be a plugin or theme conflict. Please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.
If you can install plugins, install “Health Check”: https://www.ads-software.com/plugins/health-check/ On the troubleshooting tab, you can click the button to disable all plugins and change the theme for you, while you’re still logged in, without affecting normal visitors to your site. You can then use its admin bar menu to turn on/off plugins and themes one at a time.
See https://www.wpbeginner.com/plugins/how-to-deactivate-all-plugins-when-not-able-to-access-wp-admin/
You can also go directly to https://yoursite.com/wp-admin/plugins.php to go the plugins list where you should be able to deactivate.
Hope it helps!
Forum: Developing with WordPress
In reply to: Apply code snippets to elementor theme builder templatesHi @xanou !
I recommend asking at https://www.ads-software.com/support/plugin/elementor/#new-post so the plugin’s developers and support community can help you with this.
Hope it helps!
Forum: Developing with WordPress
In reply to: Dynamic Timezone Based on User’s Device & Location@mohsinworld
Well, it doesn’t set the timezone as a WordPress setting but makes all the PHP date and time functions work with the user timezone, set as a cookie.I’m not 100% sure if it will suit your requirements, feel free to test it in your local or in your development environment!
- This reply was modified 2 years, 4 months ago by Carlos Bravo.
- This reply was modified 2 years, 4 months ago by Carlos Bravo.
Forum: Developing with WordPress
In reply to: Dynamic Timezone Based on User’s Device & LocationHi @mohsinworld
There is a plugin that could help you:
https://www.ads-software.com/plugins/use-clients-time-zone/
Hope it helps!
Forum: Installing WordPress
In reply to: uploading an old site back upDue to the differences between the various site hosting plans offered at wordpress.com and the self-hosted and self-installed version of WordPress supported here, you should probably ask WordPress.com support instead: https://wordpress.com/support/help-support-options/
Hope it helps!
Forum: Fixing WordPress
In reply to: Can not change product permalinksHi @jumaya !
It seems that “default” is the same option as “custom base” starting with “product/”.
So, if you want to have https://site.com/product/t-shirt it will be fine.
In case you want a custom one like https://site.com/awesome-product/t-shirt you can add that word to the “custom base” field.
In case this answer does not helps, I recommend asking at
https://www.ads-software.com/support/plugin/woocommerce#new-post so the plugin’s developers and support community can help you maybe better.
Hope it helps!
Forum: Fixing WordPress
In reply to: Hide posts in subcategoryHi @davao1 !
You could use a PHP Code Snippet plugin and add create a filter in the pre_get_posts:
add_action('pre_get_posts', 'filter_out_children'); function filter_out_children( $query ) { if ( is_main_query() && is_category() && ! is_admin() ) { $qo = $query->get_queried_object(); $tax_query = array( 'taxonomy' => 'category', 'field' => 'id', 'terms' => ! is_null($qo) ? $qo->term_id : null, 'include_children' => false ); $query->set( 'tax_query', array($tax_query) ); } }
Hope it helps!
Forum: Developing with WordPress
In reply to: “Hide from Search” Plugin ErrorI recommend asking at https://www.ads-software.com/support/plugin/mpress-hide-from-search/#new-post so the plugin’s developers and support community can help you with this.
Hope it helps.
Forum: Fixing WordPress
In reply to: Insert specified posts into pageHi @sc00t
I recommend asking at https://www.ads-software.com/support/plugin/elementor/#new-post so the plugin’s developers and support community can help you with this.
They may have an extension for the Query Loop block that could fit your requirement.
WordPress Core Query block may help you, as it allows you to create a post list filtered by author and sorted by name or date. I attach a screenshot where you can find those options. https://d.pr/i/aUwfJH
Hope it helps!
Forum: Fixing WordPress
In reply to: Too long list in drop-down menuHi @ks0605 !
One solution, without having to do some custom code, could be creating a submenu called “More Languages” and adding the rest of them there. That way you will have the “hover” functionality out of the box.
I’m sharing a couple of screenshots of both the admin and the front.
Admin:
https://d.pr/i/1l2CsGFront:
https://d.pr/i/Xee2lvHope it helps!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Mobile menuHi @baxter89 !
I’m not 100% sure if you want the menu to be folded or unfolded. In the navigation block, you can have a mobile menu in both mobile and desktop versions of your app.
I share a screenshot where you can find the option on the Site Editor.
https://d.pr/i/QbZnjMIn case you need a different behaviour, I’m afraid that it will require some JS-CSS tweaks.
Hope it helps!
Forum: Fixing WordPress
In reply to: Dynamic Shortcode ElementorHi @heyitsmerjian !
I recommend asking at https://www.ads-software.com/support/plugin/elementor/#new-post so the plugin’s developers and support community can help you with this.
Hope it helps!
Forum: Fixing WordPress
In reply to: Customizer Changes are not showingHi @snehasishkonger01 !
I recommend asking at https://www.ads-software.com/support/theme/blocksy/#new-post so the theme’s developers and support community can help you with this.
Hope it helps!
Forum: Fixing WordPress
In reply to: Can you display none on a DIV if URL has string?Hi @simon_a6 !
I guess in this case the best option is to contact the page builder support.
According to our guidelines, these forums are not for support for commercial products.
Best regards!
Hi @loano1!
You could try to make the query with
posts_per_page => 1
and then use$query->found_posts
instead of$query-> post_count
According to the documentation
$found_posts => The total number of posts found matching the current query parameters.
I found that option in stackexchange.
Let me know if it helps!