anant101289
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Update Stock – set status WPALLIMPORTHello,
I think something is conflicting with your import.
May for preorder management you have used the preorder plugin that is interacting with production importing.
Thanks!
Forum: Fixing WordPress
In reply to: Syntax for displaying category nameHello,
please check below function
get_the_category($id) where $id = post id.
you can check refer this link
https://developer.www.ads-software.com/reference/functions/get_the_category/or you want to display category list then refer below link
https://developer.www.ads-software.com/reference/functions/wp_list_categories/Thanks
- This reply was modified 5 years, 3 months ago by anant101289.
Forum: Fixing WordPress
In reply to: content errors with httpsHello,
try these steps 1).backup your .htaccess file
2).remove your old .htaccess code
3).add this code and save:
===========================================================================
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]# BEGIN WordPress
# The directives (lines) betweenBEGIN WordPress
andEND WordPress
are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
============================================================================
then check website may be your content issue solved.Thanks.
Forum: Fixing WordPress
In reply to: Possible duplicate content on archive pages?Hello,
Learn and Use this plugin: https://www.ads-software.com/plugins/duplicator/
you helpfull.Forum: Fixing WordPress
In reply to: Database query on every productHello,
Your all product export in csv and all product sku not enter same, all products sku enter different than your all products nutritional values add in csv and import products.
import time click exist products checkbox.Forum: Fixing WordPress
In reply to: Gutenberg Controls Working But Show As BlankHello,
you have no need of Gutenberg so try this method:- https://www.wpbeginner.com/plugins/how-to-disable-gutenberg-and-keep-the-classic-editor-in-wordpress/Forum: Fixing WordPress
In reply to: gutenberg – Is it possible to programmatically remove a block?Hello,
Please try to this code in your functions.php file.// disable for posts
add_filter(‘use_block_editor_for_post’, ‘__return_false’, 10);// disable for post types
add_filter(‘use_block_editor_for_post_type’, ‘__return_false’, 10);Forum: Fixing WordPress
In reply to: Connection Information – FTP credentialsThe easiest way to solve this problem is add the following FTP information to your wp-config.php
define(‘FS_METHOD’, ‘direct’);
define(‘FTP_BASE’, ‘/usr/home/username/public_html/my-site.example.com/wordpress/’);
define(‘FTP_CONTENT_DIR’, ‘/usr/home/username/public_html/my-site.example.com/wordpress/wp-content/’);
define(‘FTP_PLUGIN_DIR ‘, ‘/usr/home/username/public_html/my-site.example.com/wordpress/wp-content/plugins/’);FTP_BASE is the full path to the “base”(ABSPATH) folder of the WordPress installation.
FTP_CONTENT_DIR is the full path to the wp-content folder of the WordPress installation.
FTP_PLUGIN_DIR is the full path to the plugins folder of the WordPress installation.Please try this
Forum: Fixing WordPress
In reply to: Search and filter categoriesHello @hafsazulf,
I think you need categories filter for post page and portfolio & testimonial page,am i right?
You can check below link
https://demo.designsandcode.com/sfpro-woo-mystile/?_sft_product_cat=clothing
https://docs.designsandcode.com/search-filter/#examples
please let me know if you need more help
Thanks
Hello @daddytofu,
There is this new feature in WordPress 5.3 that allows users to upload big image file (threshold being either width or height of 2560px) and the core will scale it down.
Meanwhile there is a workaround, we can disable the new scale down big image feature with just one line of code, see detail in this link below.
add_filter( 'big_image_size_threshold', '__return_false' );
I think it should help you,please let me know about it.
Thanks
- This reply was modified 5 years, 3 months ago by anant101289.
- This reply was modified 5 years, 3 months ago by anant101289.
Forum: Fixing WordPress
In reply to: multi section single.php wordpressHello @hmmodern,
Please follow below link for tabbed view
https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_tabs_dynamic&stacked=h
it should help you for tabbed view,you can do according your requirement.
Thanks
Forum: Fixing WordPress
In reply to: Database warning errorHello @gaupoit,
please check below files to understand of function.
wp-admin/includes/schema.php
wp-admin/includes/upgrade.php
Thanks
- This reply was modified 5 years, 3 months ago by anant101289.
Forum: Fixing WordPress
In reply to: multi section single.php wordpressHello @hmmodern,
We can do this.Post details and Reviews by default provided in wordpress and for cast tab you will develop custom post type for Main role and custom meta for Screenwriter & Director, you can do anything according your requirement.
For Post single page you do Tabing view by custom HTML and JS.
Thanks
Forum: Fixing WordPress
In reply to: database errorsHello @roz333,
you can check below links, i think it will help.
https://dev.mysql.com/doc/refman/5.7/en/myisam-table-close.html
https://wptavern.com/how-to-repair-a-crashed-wordpress-posts-table
https://dev.mysql.com/doc/refman/5.5/en/repair-table.html
Thanks
- This reply was modified 5 years, 3 months ago by anant101289.
Forum: Fixing WordPress
In reply to: PHP 7.3 errorsHello @albie5047,
you can edit below file
wp-admin/setup-config.php
define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
Patch defines WP_CONTENT_DIR at the start of setup-config.php along with the others. That should fix it.
Only problem with that, Is that to install, it means *must* use mysql/default database.
if above solution not working then please contact server team or install mysql.
Thanks