Ian Sackofwits
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: homepage is in disarray while site logging in WPHey, yangqu, do you have any internet browser developer errors appear when logged in?
This is some documentation about how to see the errors that may exist: https://ww.wp.xz.cn/documentation/article/using-your-browser-to-diagnose-javascript-errors/
Forum: Plugins
In reply to: [WooCommerce] Text and logo before product catalog layoutHey, browmaniac, I’m another WooCommerce user.
It looks like Elementor has documentation about how to modify the product pages.
Here is link to that page: https://elementor.com/blog/customize-woocommerce-product-page/
Forum: Plugins
In reply to: [WooCommerce] Shopping cart not showingHey, katelss, I’m another WooCommerce user.
I’d recommend making a staging version of your site and changing your theme and have WooCommerce still enabled to see if the shopping cart issue get resolved; if so, this means this is a theme issue.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce messing up my home pageHey, cplambright, I’m another WooCommerce user.
I’d recommend making a staging version of your site and changing the default theme and have WooCommerce still enabled to see if the front page is fine.
Your current theme may have styles that are being influenced by the WooCommerce styles that the plugin generates.
Forum: Plugins
In reply to: [Nimble Page Builder] Remove mapHey, billrodgers2013, I’m another Nimble Page Builder user.
Are you still having problems removing the map?
Forum: Plugins
In reply to: [Front End PM] Front End PMHey, ahmedgolic, I’m another Front End PM user. I think the first one you can achieve by using a translation plugin. For the second question can you explain more about what you mean? Do you mean auto populate the username without completely writing the full username?
Forum: Themes and Templates
In reply to: [Hestia] TikTok embeds are tiny and squished at the bottomHey, the9mm, I’m another Hestia user.
Temporarily try using this CSS:
.wp-block-embed.is-type-video > .wp-block-embed__wrapper iframe, .wp-block-embed.is-type-video > .wp-block-embed__wrapper > object { position: static !important; } .wp-block-embed.is-type-video > .wp-block-embed__wrapper { height: initial !important; padding-top: 0 !important; }Forum: Developing with WordPress
In reply to: Can someone help me with the top menu bar?Try removing:
div.menu.main-menu .sub-menu > li { visibility: visible; }And change
div.menu.main-menu .sub-menu li > a { background: #4ab2b2 }to
div.menu.main-menu .sub-menu li > a { background: #4ab2b2; visibility: visible; }Forum: Developing with WordPress
In reply to: Can someone help me with the top menu bar?Try changing
div.menu.main-menu #primary-menu .sub-menu { visibility: hidden !important; }to
div.menu.main-menu ul#primary-menu li ul.sub-menu { visibility: hidden !important; }Forum: Developing with WordPress
In reply to: Can someone help me with the top menu bar?Hey, musicophilia, feel free to experiment around with the following CSS:
div.menu.main-menu #primary-menu .sub-menu { visibility: hidden !important; } div.menu.main-menu .sub-menu > li { visibility: visible; } div.menu.main-menu .sub-menu li > a { background: #4ab2b2 }Forum: Fixing WordPress
In reply to: Removing WordPress text on botton related to wpformsHey, mdbelen, it looks like your changes took effect; I get this message after submitting: Su Mensaje Fue Enviado!
I’d recommend clearing your site’s cache (either via a caching plugin or server settings) if changing your form’s settings don’t immediately take effect.
Forum: Developing with WordPress
In reply to: Needing Help with contact formsThe form settings look fine; I’d install a mail logging plugin to see if the emails are actually being recorded as being sent out.
Forum: Developing with WordPress
In reply to: Needing Help with contact formsHey, totalconundrum, I would install a mail logging plugin to verify that the emails are actually being sent out.
If emails are recorded as being sent out, then your server’s email settings may have an issue.
Forum: Themes and Templates
In reply to: [Hestia] Featured image missing from editorHey, laspangler, you should contact their pro support: https://themeisle.com/contact/
Forum: Developing with WordPress
In reply to: Custom HTML not workingHey, ggriffingg, I’d recommend seeing if you have any browser developer errors appear. This WordPress documentation page should help in explaining how to see them: https://ww.wp.xz.cn/documentation/article/using-your-browser-to-diagnose-javascript-errors/