Vajrasar Goswami
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Issue with Background SliderIt sounds a rather theme specific issue. Did you try contacting the theme developer/forum about it?
Forum: Fixing WordPress
In reply to: Website can′t be accessed anymore (error 500)Following tutorial is the best starting point
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/
Please follow the instructions and revert if the issue still persists.
Forum: Fixing WordPress
In reply to: is there any plugin that require people Donate before download?I’ve not used the following plugin myself, but I’ve heard about the similar use cases with the same.
Forum: Fixing WordPress
In reply to: All Posts not open in Admin PanelCan you please refer to the steps mentioned in the following StackExchange thread:
Forum: Fixing WordPress
In reply to: Still no is_post_template?I don’t understand it in the complete sense, but does the following solves your issue?
if( is_singular( 'my_custom_post_type' ) ) { // your code } if ( is_post_type_archive( 'my_custom_post_type' ) ) { // your code }
Forum: Fixing WordPress
In reply to: Fatal error when trying to edit pageAs far as I can tell from the screenshot you shared, the error seems to be coming from revslider template included in the theme.
Can you find the revslider plugin and disabel it via the dashboard?
If that does not work, try switching to the default theme (Twenty Seventeen) and see if it works?
I’d also suggest you to post the same issue on the specific theme’s forum.
Forum: Fixing WordPress
In reply to: Permalink structure not being followed, results in 404sOkay, can you try removing /blog from Custom Permalink too and then test how the post-link and the taxonomy-links behave?
PS: At this point, I’d first take a full backup.
Forum: Fixing WordPress
In reply to: Permalink structure not being followed, results in 404sDid you remove blog as the category base in the permalink settings?
Additionally, to test you can create a TEST category from Dashboard > Posts > Category > and add the new TEST category. Then when its created, click on the VIEW option and check what URL is created?
- This reply was modified 6 years, 11 months ago by Vajrasar Goswami.
Forum: Fixing WordPress
In reply to: One page with index or multiple pages with a menuI believe you mean 12 different categories. Is that so?
Also, please elaborate on your second approach.
Forum: Fixing WordPress
In reply to: Carousel header image isn’t centered in Mobile and Tablet View HelpFor a quick fix you can use the CSS mentioned below in your style.css
.home .owl-carousel .owl-item .item { background-position: center !important; background-size: cover !important; }
Although, I’m sure you can tweak the settings of Owl Carousel to get what you want as I’m not a fan of using
!important
in the CSS.Forum: Fixing WordPress
In reply to: WordPress MalwareHi, I’d delete the 3rd and 5th file right away and check the others for he malicious code.
Forum: Fixing WordPress
In reply to: Fixed height for product titles in Archive/Catalog pages@geoffatmm You can change the CSS code to the following
.product .title { min-height: 88px; }
Forum: Fixing WordPress
In reply to: Permalink structure not being followed, results in 404sThumb Rule – You cannot use same phrase/word/character to appear in both ‘category base’ and towards the ‘beginning’ of the posts URL.
Forum: Fixing WordPress
In reply to: Fixed height for product titles in Archive/Catalog pagesYes, you can refer to the following link for the same.
https://css-tricks.com/snippets/css/comments-in-css/
Also, please mark the topic as resolved.
Forum: Fixing WordPress
In reply to: Permalink structure not being followed, results in 404sHi @csburdick,
In my best knowledge, what you are doing here is confusing the system while querying for your permalink.
I think you should either remove the category base as ‘blog’ or remove ‘/blog’ in permalink structure and then check if it is working.