Serge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Product Quantity Input doesn’t work in mobileI checked the increase and decrease buttons for the product. I was even able to press them a couple of times on my smartphone. The problem is that they are too small on mobile devices. You need to fix their size through CSS
Forum: Fixing WordPress
In reply to: Payment Gateway error with Paypal Pro and WooCommerceno, this code should output information about CURL. To understand whether CURL is installed correctly on the server or not
Forum: Fixing WordPress
In reply to: Payment Gateway error with Paypal Pro and WooCommerceyes, Code Snippets plugin, will be the easiest way for you. please write what will output this code
Forum: Fixing WordPress
In reply to: unwanted redirect 302Is redirection not installed on the domain provider panel?
Forum: Fixing WordPress
In reply to: Database issue?There is a file in the root of the site wp-config.php ?
With a clean installation, it should not be there.- This reply was modified 4 years, 6 months ago by Serge.
Forum: Fixing WordPress
In reply to: Payment Gateway error with Paypal Pro and WooCommerceyou can check if CURL works with this code.
echo '<pre>'; var_dump(curl_version()); echo '</pre>';Forum: Fixing WordPress
In reply to: Payment Gateway error with Paypal Pro and WooCommerceHi, does cURL itself work on the server? mod_security doesn’t block cURL calls?
So far it seems to me that the problem is in the server configuration, not in WordPress
Forum: Fixing WordPress
In reply to: Database issue?Hi, check that the
wp_optionstable exists in the database. The db table probably isn’t there.Forum: Fixing WordPress
In reply to: unwanted redirect 302Hi, try using the standard htaccess
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>And this plugin https://wordpress.org/plugins/redirection/ for redirect to www
Forum: Fixing WordPress
In reply to: Adjust display for screen magnification using shift +Hi, you need to edit CSS. I can’t answer you more precisely. I need to see the site itself and its code.
Forum: Fixing WordPress
In reply to: Display tags for each postHi, As far as I remember, the tags are configured in the “Blog/Archive” section https://wpastra.com/docs/blog-archive/
Use:
<?php single_cat_title(); ?>
or:<?php $categories = get_the_category(); echo $categories[0]->name; ?>