Sundar
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How To Add No Follow TagHi,
Edit robots.txt file and add the following code
Disallow:/wp-includes_old/Hope this helps!
ThanksForum: Everything else WordPress
In reply to: what theme this site is using?Hi,
Parent Theme:hello-theme
Child Theme: hello-theme-child-masterThanks,
Forum: Everything else WordPress
In reply to: Slide/slider Image not showingHi,
I have analyzed the issues and checked slider CSS sources. In the slider configuration, background image / URL missed from the stylesheet.
Please de-activate W3 Total cache plugin and then test the sliders.
Thanks.
Forum: Everything else WordPress
In reply to: How do I make a full-width image on a WP page?Hi,
You can use width:100vw instead of width:100% or increase the container width to 100%. It will work.
Thanks.
Forum: Fixing WordPress
In reply to: Save button not workingHi,
.live() is deprecated in older version(1.7) of jQuery, so you need to use .on()
Thanks
Forum: Fixing WordPress
In reply to: Login window is no more, pop up doesn’t workHi,
Follow these steps in order to fix 403 forbidden error:
1. Check or reset/rename your .htaccess file
2. Restore backup files and check files , folder permissions
3. Deactivate WordPress plugins one by one and then check the site.
4. Finally check the active theme files and scripts for issues or errors.
5. All done.Cheers!
Thanks.Forum: Developing with WordPress
In reply to: Ho can I serve scaled images if they are URLHi,
You can use Gutenberg editor image blocks and serve scaled images through URL’s.
Thanks.
Forum: Developing with WordPress
In reply to: do not appear webpHi,
Some browsers, Website builder supports the WebP format. WordPress doesn’t currently support WebP images by default. However, you can still use the WebP format on your site – it will require one or more additional tools / add-on.
You can try the following plugin,
Try “WebP Express” -> The plugin converts your images to WebP if the visitor’s browser supports them. If the browser doesn’t support WebP, a normal version of the image will be served.
Thanks!
Forum: Fixing WordPress
In reply to: buttons: change text-transform to “non”, no uppercaseHi,
Please add the following CSS in custom CSS section,
.wp-block-buttons {
text-transform: lowercase !important;
}Thanks,
Forum: Fixing WordPress
In reply to: Sub MenuHi,
You can try the following CSS code in theme customizer section,
#responav li:hover > ul {
display: block;
visibility: visible;
}Hope it helps!
Forum: Developing with WordPress
In reply to: Slug issueHi,
Open your “functions.php” file located in your theme (preferably a child theme) & paste the following code into it with required page slug.
function redirect_page() { if (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) || isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $protocol = 'https://'; } else { $protocol = 'http://'; } $currenturl = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; $currenturl_relative = wp_make_link_relative($currenturl); switch ($currenturl_relative) { <strong> case '[from slug]':</strong> $urlto = home_url('<strong>[to slug]</strong>'); break; default: return; } if ($currenturl != $urlto) exit( wp_redirect( $urlto ) ); } add_action( 'template_redirect', 'redirect_page' );Step 1: Replace the sections in bold including the square brackets with the slugs you got from
Step 2: Save your changes.
All done!
Thanks.- This reply was modified 5 years, 8 months ago by bcworkz. Reason: code fixed
Forum: Fixing WordPress
In reply to: Not showing updated homepage? just default wordpress homepageIt may due to page template & layout settings. So Please check the page template and home page settings ( Settings->Reading->Home ). Hope it helps. Thanks.
Forum: Fixing WordPress
In reply to: gxfdufwf_wp884.wpcq_itsec_log’ doesn’t existHi,
First you need to check the database & confirm wpcq_itsec_log table (Hosting CPanel->MySQL->PHPMyAdmin). If the table doesn’t show then check the db backup and restore it.
Thanks.
Forum: Fixing WordPress
In reply to: Pictures not displayedHi,
Some times it may due to OLD woocommerce templates and pages setup. So please make sure if you have latest Woocommerce and Woocommerce related plugins.
Thanks.
Forum: Requests and Feedback
In reply to: image widthHi,
Yes, You can adjust it through image builder blocks custom design styles.
or
You can create custom CSS class for each image section and adjust width like below,
Examples:
.factory-show img { width: 300px; }
.customize-case img { width: 200px; }
.corperate-partner img {width: 150px; }Thanks.