WebBuddy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t find my wordpress admin pageI suspect that you changed the site and home url inside your settings >> general from HTTP to HTTPS, hence resulting in this error.
You can login to your Cpanel then phpmyadmin to manually rewrite the URL back to the HTTP version and you should be able to login normally.
Reference link – https://help.dreamhost.com/hc/en-us/articles/214580498-How-do-I-change-the-WordPress-Site-URL-
Hope this helps!
Forum: Plugins
In reply to: [Hide Price Until Login] Fatal error in woocommerce settingsHi,
I am already using the latest version 1.0.10 as stated on your plugin page here – https://wordpress.org/plugins/hide-price-until-login/Please see my plugin version here – https://prnt.sc/qkb497
You mentioned there is a latest version, may I know where can I get it?
Forum: Fixing WordPress
In reply to: Google problemI would suggest you set up a redirect from your old URL to the new URl using plugin like redirection plugin – https://wordpress.org/plugins/redirection/
Then tell google to index your website (via Google webmaster console). And it will be reflected in a few days.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] picture is covering the short descriptionHi,
I am using chrome and the image on the left did not hover over the description on the right. However, there is no margin between the image and the text, so if you mean to increase the margin, I suggest that you contact the theme developer for assistance.Also, next time if you want to publish a product but do not want it to appear in your online shop for general visitors, you can publish a product as ‘hidden’, this way, you can share with us the URL and the product won’t appear in your shop when people browse. Hope this helps.
Forum: Plugins
In reply to: [WooCommerce] picture is covering the short descriptionHi,
We couldn’t see the page because it is in draft mode. Can you try to publish it and see if the image still covering the text?Forum: Plugins
In reply to: [WooCommerce] Product title not displayHi,
I see that you are using UXL Themes, I think it is better that you check with them on how to show the product title in wooocmmerce pages.Forum: Fixing WordPress
In reply to: ‘a’ tag displaying as an actual hyperlinkHi,
There’s something wrong with the HTML codes on that page, if you look at the codes, it is:<li><a href="http://<a href="#capturing_form_data">Capturing / Submitting Form Data</a>">Capturing / Submitting Form Data</a></li>You have a ‘a href’ nested inside another ‘a href’. The correct code should be:
<li><a href="#capturing_form_data">Capturing / Submitting Form Data</a></li>I have created a testing page where you can see how it works at –
https://singaporewordpress.com/testing1/test-phpI believe it is the way you use the editor that creates this issue. I suggest you simply use the ‘text’ editor to input the HTML directly to keep it clean and not the visual editor.
Hope this helps.
Forum: Fixing WordPress
In reply to: ‘a’ tag displaying as an actual hyperlinkIs it possible for you to share with me the URL of the page so I can take a look to help?
Forum: Fixing WordPress
In reply to: ‘a’ tag displaying as an actual hyperlinkYou mean it is still showing the red and underline text? You need to remove the ‘link’ (click the chain icon in the editor to unlink it) so that it will show as normal text.
Forum: Fixing WordPress
In reply to: Sign Up For Blog Post…….It is easier to use plugins like Subscribe2 to help with this process. You can check it out at – https://wordpress.org/plugins/subscribe2/
Hope it helps.
Forum: Fixing WordPress
In reply to: ‘a’ tag displaying as an actual hyperlinkThe name tag is not supported in HTML 5. You can use the id tag.
The following code will appear as ‘Top of page!’
<h2 id="top">Top of page!</h2>Then in order to go to that anchor, just use:
<a href="#top">Go to top</a>Hope this clarifies.
Forum: Fixing WordPress
In reply to: Messages sent by forms do not arrive in the destination emailI suspect that your server is not sending out the emails. Try installing ‘smtp mail’ plugin and send emails using gmeil smtp server and see if you receives the emails. If you receive them, then it confirms issue lies with your server.
Forum: Fixing WordPress
In reply to: Can’t Upload or even Embed Videos!@wessona , can you share with me your youtube video url so I can take a look?
Forum: Fixing WordPress
In reply to: Webpage reading Fatal error re: FB pluginA facebook link and another I don’t recall right now were installed in the drop-down menus on my webpage without my consent.
Your website might have been hacked. Do contact your hosting or restore the latest backup copy you have.
Forum: Fixing WordPress
In reply to: How to get rid of string that appear on the header position?It could be due to improper closure of HTML tags. Good that you have resolved it!