ibertrix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to replace the links http to httpsI checked the URL https://html5shim.googlecode.com/svn/trunk/html5.js and can′t be reached.
You can change any string with the search and replace plugin. That will change any http to https or any other string.
Forum: Fixing WordPress
In reply to: Blank page when not connected as adminI have checked your /wp-admin/ logging area and it is reporting issues with your theme:
Notice: Constant BIGCART_DIR already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 13
Notice: Constant BIGCART_URI already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 14
Notice: Constant BIGCART_LIB already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 15
Notice: Constant BIGCART_TEMPLATES already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 16
Notice: Constant BIGCART_ADMIN already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 17
Notice: Constant BIGCART_HELPER already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 18
Notice: Constant BIGCART_PLUGINS_URI already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 19
Notice: Constant BIGCART_PLUGINS already defined in /var/www/html/wp-content/themes/bigcart/functions.php on line 20
Propulsé par WordPressIt seems you have defined those variables twice somewhere else and in your functions.php file in your theme.
Forum: Fixing WordPress
In reply to: Where to get PHP 5.6.20 for Windows?I second that you should use at least 7.2. If any plugin or your theme doesn′t work with 7.2, try 7.1 or 7.0, which are also end of life but more up to date.
Forum: Plugins
In reply to: [WooCommerce] buy now button with no reloadAs I said before, I have tried enabling/disabling that option and that didn′t work
I am not using any Avada shorcodes, I just create a simple button and added this link to it:
“/?ajax_add_to_cart_product=1”
I will try in the shop page instead on the homepage
Forum: Fixing WordPress
In reply to: Admin username being discoveredIt looks like someone has injected a javascript code in your website. I′d first look into your WordPress files or database to see if you can find that code and remove it.
Another solution might be to create a fresh install and install manually themes, plugins and export content from old website and import it again.
Forum: Localhost Installs
In reply to: Develop on local host and upload to production siteyes, it′s possible. You can use MAMP:
https://athemes.com/tutorials/install-wordpress-locally-using-mamp/
or just a manual local Apache installation.
I would suggest you to trick your host file whenever you are developing against your real domain. So you can have:
https://www.mydomain.com 127.0.0.1
pointing to your local machine. That lets you to have your WordPress installation and database exactly as in production, so no change needs to be done when you upload any change
Forum: Plugins
In reply to: [WooCommerce] buy now button with no reloadThanks for answering so quickly!
The product is added. I just don′t want to get the home page reloaded. No redirection, just it add the product to the cart. After that, I would like to get the button to be changed to view cart.
Apparently is possible to do this with AJAX
Not sure If I am explaining myself right
I have sent you the system info by email. Logs don′t show any error.
Forum: Plugins
In reply to: [WooCommerce] Redirect to login when browsing Woocommerce pagesI have installed a fresh install of latest WordPress (5.0.1) and Woocommerce (3.5.2). I run the wizard and go ahead and installed Storefront and the defaults and the code works fine.
There must be something wrong with Divi and the candy-picture child theme since It′s not working.
I will ask in a Divi forum
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Redirect to login when browsing Woocommerce pagesSorry, I copied and pasted your code and still doesn′t work in the shop page.
I use Divi and its candy-picture child them. You can check it out here:
Thanks!
Forum: Fixing WordPress
In reply to: Hide Shop PageHi,
I am experiencing the same issue. I am trying to redirect all woocommerce pages to the account section. The idea is to have a private Woocommerce site. Here is what I have:
`function wpse_131562_redirect() {
if(!is_user_logged_in() && $pagenow != ‘wp-login.php’)
{
if ( is_woocommerce() || is_shop() || is_cart() || is_checkout())
{
wp_redirect(site_url(‘account/’));
exit;
}}
}
add_action(‘template_redirect’, ‘wpse_131562_redirect’);
`Is not working with WordPress 5.0 and latest Woocommerce version.
Forum: Plugins
In reply to: [GDPR] change colors and css of the button, etcThanks!
Forum: Plugins
In reply to: [GDPR] change colors and css of the button, etcYes, but how? What do I have to change for instance to change the background color of the button?
Forum: Plugins
In reply to: [WooCommerce] after Woocommerce update settings of taxes can′t be editedMore information. I have realized that the issue was that enabling “automatic taxes” disable the rest of options under the taxes tab. Not sure if that′s intended but it′s totally confusing.
Forum: Plugins
In reply to: [WooCommerce] after Woocommerce update settings of taxes can′t be editedok, I found myself the woocommerce_taxes_* options in wp_options.
I have changed woocommerce_tax_total_display to itemized but in the backend remains as before (total option is shown).
If I remove that entry in wp-options nothing changes.
Definitely there is something wrong.