Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce is making WP top Toolbar disappearSo this is not a bug. It is intended. Usually a customer is only there to shop/purchase products and having that toolbar there when logged in will look weird and unexpected. For people don’t know WordPress would find it very odd to see that.
However if you’re keen on showing it to customers, there is a filter available for you. You can put this in your theme’s functions.php file ( preferable in your child theme ).
add_filter( 'woocommerce_disable_admin_bar', '__return_false' );
Forum: Plugins
In reply to: [WooCommerce] Thinning down the navigation menue#navigation ul.nav li.home a { font-size:12px !important; }
#navigation ul.nav li a { padding:0.2em 1.618em !important; }
Forum: Plugins
In reply to: [WooCommerce] Thinning down the navigation menueWell one thing you can do is change the font size and it will be “thinner”. Try putting this in your CSS.
#navigation ul.nav li a { font-size:15px !important; }
Forum: Plugins
In reply to: [WooCommerce] Incorrect Calls to style sheetsHello,
Why do you feel that is incorrect? It is a perfectly valid way to load external resources. It is better known as “protocol-less” relative URL.
Doing so makes it easier to switch between HTTP and HTTPS. You will see Google use this method quite often especially from their CDN resources such as the jQuery libraries and more.
Forum: Fixing WordPress
In reply to: Remove Border from Single Thumbnail in GalleryIf I could see the underlying html, I can better assist you but for IDs, it is usually #id { color:red; } like so…
Forum: Fixing WordPress
In reply to: Creating a new WP site while maintaining old one liveEither way works fine…Yes you will need a separate WP install.
Forum: Fixing WordPress
In reply to: Creating a new WP site while maintaining old one liveYeah so if you don’t need it to be viewed by others, by all means do it locally, that would be the best scenario.
Then you can simply export the database from your local install and import it to your live and also FTP up all the changed files/theme etc…That is the cleanest way.
Forum: Fixing WordPress
In reply to: Creating a new WP site while maintaining old one liveOk so in that case you could try the following:
1. Create a sub-domain like test.live-site.com
2. Make a copy of your current database and import it into a new database name
3. Make a copy of your current site files and paste it into your newly create sub-domain folder.
4. Make sure to block search engines from finding this site, it is in your WordPress settings.
So make any changes you want to this new sub-domain…Once finished and ready, it would be a simple switch over…
Forum: Fixing WordPress
In reply to: Logging in to the back end times out & my website gives a 500 errorThis would seem to be more of a server side error…Have you contacted your host about this? If so, what did they say?
Forum: Fixing WordPress
In reply to: unable to loginYou may need to access the database in this case to change the password.
Forum: Fixing WordPress
In reply to: Creating a new WP site while maintaining old one liveSo I am not fully understanding the concern here but why not just work on the live one now as is? You could always put the site in maintenance mode (via plugin) if you don’t want visitors to see.
Forum: Fixing WordPress
In reply to: Unable to wrap text around image no matter whatThis is because in your CSS, it is set to display as block. You need to remove that and add a float either left/right. See this https://cld.wthms.co/Ky0j
Forum: Fixing WordPress
In reply to: Images always aligning leftPlease refer to this explanation https://www.w3schools.com/cssref/pr_class_display.asp
You could add a new custom class to the anchor so it will not affect all lightbox classes.
Forum: Fixing WordPress
In reply to: Images always aligning leftOk so for example, you could make the anchor tag “inline” in your CSS, and you will get this https://cld.wthms.co/S4HK
Forum: Fixing WordPress
In reply to: Images always aligning leftCan you please post the URL of the frontend where I can see the images?