jaynarayan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I want to disable WordPress welcome emails@sadeeke ,Do you still need help with this? if you have some staging site setup,I can see your code and try to fix it in my free time on weekend. Would love to help you (genuine help, free of cost 🙂 )
Forum: Fixing WordPress
In reply to: Header Logo Not Linking to Homepagethe markup generated by theme for logo is as per following. you can see that there are some extra quotes, which should not be there.
<img src="”https://collectiblesandmoreinstore.com/wp-content/uploads/2021/07/collectiblesandmoreinstore-logo.png”" alt="”collectiblesandmoreinstore" logo"="" width="”350”" height="”110”"> this should be some thing like this <code><img src="https://collectiblesandmoreinstore.com/wp-content/uploads/2021/07/collectiblesandmoreinstore-logo.png" alt="collectiblesandmoreinstore" width="350" height="110" /></code>second issue i found is that your parent div is adding image as content which is overlapping the anchor tag. that’s why your link is not working.
.rsrc-header-img { content: url("/wp-content/uploads/2021/07/collectiblesandmoreinstore-logo.png"); display: block; height: 110px; visibility: visible; width: 350px; }override this class in CSS and remove the content.
on a side note, we use child themes so that we don’t have to modify parent themes file. you should do changes only in your child theme and override parent themes files/CSS.
Forum: Fixing WordPress
In reply to: WordPress very slow/ not loading on chromeThis may happen if your WordPress is not properly optimised. May be your images are not properly optimised for web, or your theme is loading too much un used scripts and CSS or something else.
Try goggle Speed insight and check for improvement suggestion.it will show you why your site is too slow.
Forum: Fixing WordPress
In reply to: Shipping formula not workingwhich plugin do you use?
Forum: Fixing WordPress
In reply to: How do I make my sidebar sticky?A sticky element requires a threshold to be specified by setting value (other than auto) for at least one of the top, right, bottom, or left properties.
try adding top:0 in your css
.right-sidebar{ position:sticky; top:0; }this article will help you to troubleshoot your sticky problems in future . 🙂
https://www.designcise.com/web/tutorial/how-to-fix-issues-with-css-position-sticky-not-working- This reply was modified 4 years, 7 months ago by jaynarayan.
Forum: Fixing WordPress
In reply to: fix faster wp site for mobile versionWhat are the improvement suggestion given by Google page insight? Use them to improve your site speed.
Forum: Fixing WordPress
In reply to: Trouble Logging InDo you remember what changes did you make in your last session? When it takes you back to login page , what is the url showing in address bar?
Forum: Fixing WordPress
In reply to: Could someone please point me in the Right Direction for learning.Start learning 1)how to attach custom fields with page 2)how to edit page template to display custom field.
Create basic child theme.place the custom field code in function.php file and creat a page template by copying from your parent theme and edit it to display custom field data.
WordPress theme developer handbook will be very helpful to you.chek it out.
Forum: Fixing WordPress
In reply to: WP assigning slugs to images I want to use as pagesOpen that image from media library and edit it’s permalink. Change it from pub to something else. After that you will be able to create page with pub slug.
Forum: Fixing WordPress
In reply to: Trouble with woocommerce product sharing imageIt looks like og tags issue. If you familiar with PHP and CSS you can edit header file of theme .
https://www.quora.com/How-can-I-include-picture-and-description-while-sharing-the-WordPress-woocommerce-store-product-link-to-the-social-mediaIf you are not familiar with coding use some plugin. May be SEO plugins will allow you to set og tags for each Product page.
Forum: Fixing WordPress
In reply to: Adding New Theme to WordPressSet wp_debug true in wp-config.php file to TRUE. It will display errors with more details.
Post that error here.
- This reply was modified 4 years, 8 months ago by jaynarayan.
Forum: Fixing WordPress
In reply to: How do I hide the “archive” text?What’s is set in options site name and site title?
Appearance-> customize->site identityForum: Fixing WordPress
In reply to: Replacing old site with newIs your new design in form of PSD, html template or in new WordPress project?
If it’s in form of PSD or html template , you can convert into WordPress theme and instal it in your existing website.
Forum: Fixing WordPress
In reply to: Home page links not redirecting to other pagesLearn more about button is working properly . Redirecting to about us page.
For sharing screenshot you can use this free service to upload screenshot.
Share link of ur screenshot here.
Forum: Fixing WordPress
In reply to: Home page links not redirecting to other pagesCan you share screenshot indicating the button you need help with?