Dario Corbelli
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Title label in Widget doesn’t show upA registered sidebar needs to be called inside your theme. It’s not enough to simply declare it in the functions.php.
To do so you need to add the following code wherever you want it to appear (page.php, single.php, archive.php and so on):
<?php if ( is_active_sidebar( 'footer-widget-col-one' ) ) : ?> <?php dynamic_sidebar( 'footer-widget-col-one' ); ?> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Edit status barThere are several ways to do it.
- Install a plugin to hide the admin bar (just search for it in the “Add New Plugin” section in the WP admin panel)
- Add the following code to your functions.php:
add_filter( 'show_admin_bar', '__return_false' );
Forum: Fixing WordPress
In reply to: What does this update message mean?Ok so it’s showing you that you have a new version of both the “translation and various other localisation fixes”, so i think you should simply re-install it, as it suggests.
Forum: Fixing WordPress
In reply to: What does this update message mean?What happens if you click the link reported in the alert, in the first screenshot? What page does it load?
Forum: Fixing WordPress
In reply to: Old blog title showing at the end of post title in googleGoogle doesn’t update your website in real time. You need to wait for your changes to be visible inside the search results (it could take even several weeks).
Here is a useful resource from Google itself, for reference: https://developers.google.com/search/docs/advanced/crawling/ask-google-to-recrawl
Forum: Fixing WordPress
In reply to: Solution for products automatically moving to trashThey’re automatically moved to trash… when? Where? I think you missed some useful informations here…
Forum: Fixing WordPress
In reply to: I changed the url and don’t have php adminYou’re welcome!
(And yes, maybe it had an administrator account).
Forum: Fixing WordPress
In reply to: Need a Number Animation plug-in with shortcode *input*Hi @brettttrent. First of all, where do you need to use this plugin? Are you using a theme editor (Gutenberg, Elementor, WP Bakery and so on)? Are you using the simple WP text editor? Are you writing your code in PHP?
Normally these kind of plugins make use of shortcodes to print their output so, if i’m not wrong, you’re looking for a shortcode inside a shortcode?
Forum: Fixing WordPress
In reply to: Marktplatz / KleinanzeigenHi @tommi8, please type your post in english so everybody can help you.
Thanks.Forum: Fixing WordPress
In reply to: I changed the url and don’t have php adminI’m wondering how did you succeed in changing the url of the website with an Editor account…
Anyway, the only way to change the website URL from outside the wp-admin is by modifing the record directly on the DB (in the wp_options table). According to your post, you don’t have access to it so i’m sorry but i think your website is lost.
Forum: Fixing WordPress
In reply to: I changed the url and don’t have php admin“why not change the url to my friends main one and save it, so now he can use this web and use the new version”
What does it mean? In which way did you change that url?
Forum: Plugins
In reply to: [WooCommerce] New endpoints not workingI’ve the same problem! I’ve already updated the plugin to the 2.1.2 version but i still get 404 for every endpoint.
https://www.pugliafoodidea.com/
Anyone found a solution for this?
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] donot workYou’re welcome!
And happy new year to you too ??Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] donot workHere is the final “init” function:
function init() { $this->init_form_fields(); $this->init_settings(); $this->enabled = $this->get_option('enabled'); $this->title = $this->get_option('title'); $this->country_group_no = $this->get_option('country_group_no'); $this->sync_countries = $this->get_option('sync_countries'); $this->availability = 'specific'; $this->countries = $this->get_option('countries'); $this->type = 'order'; $this->tax_status = $this->get_option('tax_status'); $this->fee = $this->get_option('fee'); $this->options = (array) explode( "\n", $this->get_option( 'options' ) ); }
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] donot workOf course it is. “get_option” is a function.