ketanambaliya
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: cannot access wordpress admin too many redirectsHi @sauchau,
You can access your dashboard using wp-loging.php
https://egbeconsultancy.com/wp-login.phpForum: Developing with WordPress
In reply to: Can duplicate array elements be removed from the tag list?@bcworkz Agreed.
@eadwig Here is the resource for same. https://stackoverflow.com/questions/22945617/how-to-remove-ducplicate-tags-from-custom-tag-listForum: Fixing WordPress
In reply to: the rows of my products are NOT symmetrical@binarywc This plugin is not only use for fix a problem but also used for website speed issue and the proper image size for desktop and mobile.
Forum: Fixing WordPress
In reply to: the rows of my products are NOT symmetricalYou can use the below plugin to resolve image size issue.
https://www.ads-software.com/plugins/shortpixel-adaptive-images/
Forum: Fixing WordPress
In reply to: Unable to reset passwordHi Beheerdersgm,
You can create new admin user using the file. See detail here https://www.wpbeginner.com/wp-tutorials/how-to-add-an-admin-user-in-wordpress-using-ftp/
Thanks!
Forum: Fixing WordPress
In reply to: Where do I edit the personal bio at the end of each blog post?Hi RustyWriter,
You can edit here –
Users > Select that user > About the user > Biographical Info
Forum: Fixing WordPress
In reply to: Error on DashboardHi Prakhar236,
It is not error. It’s Warning.
You can hide using following line add in your wp-config.php file located in your website server root.define( ‘WP_DEBUG’, false );
Forum: Fixing WordPress
In reply to: Change image “link to” to ‘none’ – globally?It will remove link from existing images.
You can add anywhere in function.php
Forum: Fixing WordPress
In reply to: Change image “link to” to ‘none’ – globally?Hi sb12759,
Add below code to your theme function.php file.
add_filter( ‘the_content’, ‘attachment_image_link_remove_filter’ );
function attachment_image_link_remove_filter( $content ) {
$content =
preg_replace(
array(‘{<a(.*?)(wp-att|wp-content\/uploads)[^>]*><img}’,
‘{ wp-image-[0-9]*” />}’),
array(‘<img’,'” />’),
$content
);
return $content;
}Forum: Fixing WordPress
In reply to: Fixing Heavily Customized SiteHi Pranaman,
You need to find the WordPress developer to solve all the issue and make better website.
Forum: Fixing WordPress
In reply to: URL problem!Hi Mysik Kernel,
Just add dot(.) in Category base in permalink setting.
Forum: Fixing WordPress
In reply to: Page not Found and wrong Homepage displayingWelcome Mwalek!
No it just changed reading setting not effect to code.Forum: Fixing WordPress
In reply to: View in Cart ButtonShare your shop page url
Forum: Developing with WordPress
In reply to: the_excerpt() not workingHi Happik,
You need to create new template for single post(single.php) and paste all code form index file. And just replace the_excerpt() with get_content().
Hi Semperaye,
You can use below plugin. It will give option to add class in page editor.
https://www.ads-software.com/plugins/wp-custom-body-class