Serge
@sergiuspro on WordPress.org, @ziziphus on Slack
Bio
- Member Since: August 14th, 2015
- Website: t.me/devserge
- Job Title: WordPress/Woocommerce developer
-
Posted a reply to Product Quantity Input doesn’t work in mobile, on the site WordPress.org Forums:
I checked the increase and decrease buttons for the product. I was even able to… -
Posted a reply to Payment Gateway error with Paypal Pro and WooCommerce, on the site WordPress.org Forums:
no, this code should output information about CURL. To understand whether CURL is installed correctly… -
Posted a reply to Payment Gateway error with Paypal Pro and WooCommerce, on the site WordPress.org Forums:
yes, Code Snippets plugin, will be the easiest way for you. please write what will… -
Posted a reply to unwanted redirect 302, on the site WordPress.org Forums:
Is redirection not installed on the domain provider panel? -
Posted a reply to Database issue?, on the site WordPress.org Forums:
There is a file in the root of the site wp-config.php ? -
Posted a reply to Payment Gateway error with Paypal Pro and WooCommerce, on the site WordPress.org Forums:
you can check if CURL works with this code. echo '<pre>'; var_dump(curl_version()); echo '</pre>'; -
Posted a reply to Payment Gateway error with Paypal Pro and WooCommerce, on the site WordPress.org Forums:
Hi, does cURL itself work on the server? mod_security doesn't block cURL calls? So far… -
Posted a reply to Database issue?, on the site WordPress.org Forums:
Hi, check that the wp_options table exists in the database. The db table probably isn't… -
Posted a reply to unwanted redirect 302, on the site WordPress.org Forums:
Hi, try using the standard htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase… -
Posted a reply to Adjust display for screen magnification using shift +, on the site WordPress.org Forums:
Hi, you need to edit CSS. I can't answer you more precisely. I need to… -
Posted a reply to Display tags for each post, on the site WordPress.org Forums:
Hi, As far as I remember, the tags are configured in the "Blog/Archive" section https://wpastra.com/docs/blog-archive/ -
Posted a reply to Is there a better way to get the category title than the slug?, on the site WordPress.org Forums:
Use: <?php single_cat_title(); ?> or: <?php $categories = get_the_category(); echo $categories[0]->name; ?> -
Posted a reply to Счётчик скачивания, on the site Форумы поддержки:
Сделать дополнительное поле для каждой записи. Назвать его "Кол-во скачиваний" к примеру. И перед тем… -
Posted a reply to Отключить добавление тега р , в поле созданном плагином Advanced Custom Fields, on the site Форумы поддержки:
Ок, протестил у себя, действительно перестало работать. Вот это у меня сработало: Сперва добавляем в… -
Posted a reply to Отключить добавление тега р , в поле созданном плагином Advanced Custom Fields, on the site Форумы поддержки:
Попробуйте так function my_acf_add_local_field_groups() { remove_filter('acf_the_content', 'wpautop' ); } add_action('acf/init', 'my_acf_add_local_field_groups');