yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Some blog category links do not workYou can do this both way, but simple to do is login in your dashboard
click on Appearance -> Customize -> Additional CSS
and paste your CSS there
Forum: Fixing WordPress
In reply to: Product page is stuck on left side of the screenHi There
put this css
.thb-product-detail .medium-6 { max-width: 50%; }
Thanks
Forum: Fixing WordPress
In reply to: Woocommerce Dropdown Menu Not ShowingHi There
change this css
.elementor-invisible { visibility: hidden; }
to
.elementor-invisible { visibility: visible; }
Thanks
Forum: Fixing WordPress
In reply to: Site/Theme Not Mobile ResponsiveHi There
@media(max-width:525px){ .container-fluid .boldgrid-section, .container-fluid .boldgrid-section-group, .container-fluid .row, .container .row { margin-right: 0; margin-left: 0; } }
add this CSS
Thanks
Forum: Fixing WordPress
In reply to: Scrolling not working when page is assigned home page statusHi There
body.home { overflow: hidden; }
change this to like bellow
body.home { overflow: scroll; }
Thanks
Forum: Fixing WordPress
In reply to: Some blog category links do not workHi There
first remove background-color from here because of nothing is visible in given link.foodrecipes-box-paging { background-color: #FFF;; }
- This reply was modified 3 years, 3 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: problem after update to 5.8Hi There
add_action('wp_default_scripts', function ($scripts) { if (!empty($scripts->registered['jquery'])) { $scripts->registered['jquery']->deps = array_diff($scripts->registered['jquery']->deps, ['jquery-migrate']); } });
add this code in your fucntions.php or install this plugin
https://github.com/cedaro/dequeue-jquery-migrate
Thanks
Forum: Fixing WordPress
In reply to: WordPress site admin panel opening errorHi There
I confirm this parse error on v5.5.1.
Just have to rename print() >wpcf7_print()
, for instance. Lines 9 and 223thanks
Forum: Fixing WordPress
In reply to: Adding snow fall animationForum: Fixing WordPress
In reply to: Help with header & mobile adaptions@media(max-width:525px){
.wpb_wrapper .logo {
border-bottom: 1px solid #333;
}
.d-flex.header-logo {
padding: 20px 0;
}
}Forum: Fixing WordPress
In reply to: Help with header & mobile adaptionsSomething like attachmnet?
https://www.awesomescreenshot.com/image/16672572?key=38300e91ede79f4e6f9f0dd2bb86a5cdif yes
theh
.wpb_wrapper .logo { border-bottom: 1px solid #333; } .d-flex.header-logo { padding: 20px 0; }
replace #333 with your expected line color
Forum: Fixing WordPress
In reply to: Broken website linksHi There
in your sites all links are working perfectly as i can see
if again this error occure then resave your permalink, that will fix your issue
thanks
Configuring the permalink structure
To configure the permalink structure for your WordPress site, follow these steps:Log in to WordPress as the administrator.
Under Dashboard, click Settings, and then click Permalinks. The Permalink Settings page appears.Click Save Changes. WordPress updates the URLs for your posts and pages immediately.
- This reply was modified 3 years, 3 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: WordPress cannot connnect secure connection to a remote serverHi @heikkiwaan
– This typically means WordPress trying to connect to the update server in the background, but couldn’t. This could be due to a simple internet connection issue, or may be the server is offline. This connectivity issue, which usually resolves itself after a while.
– If not, try contacting your internet/hosting provider.
– Also, review this tutorial: https://www.wpbeginner.com/wp-tutorials/how-to-fix-secure-connection-error-in-wordpress/Thanks
Forum: Fixing WordPress
In reply to: Help with header & mobile adaptionsAfter updated above CSS, it’s look like the attachment
https://www.awesomescreenshot.com/image/16632816?key=2a8818448edf46fa84a4495af2538cb1
Forum: Fixing WordPress
In reply to: Help with header & mobile adaptionsFor this issue
@media(max-width:525px){ .logo-header3.wpb_column.vc_column_container.vc_col-sm-4.vc_col-lg-2.vc_col-md-3.vc_col-ss-4.vc_col-xs-12 { display: none; } }
for your 2nd issue
@media(max-width:525px){ .wpb_column.vc_column_container.vc_col-sm-6 { width: 50%; display: inline-block; } }
let me know if it’s fine for you
Thanks
- This reply was modified 3 years, 3 months ago by yogeshyadav20.