ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disabling category slug in subcategory archieve urlHow about this one?
Forum: Fixing WordPress
In reply to: jQuery code not workingHi.
What if replace all$withjQuery?Or, wrap whole your code with:
(function($){ //your code here })(jQuery);Forum: Fixing WordPress
In reply to: Child-Theme not working after Parent Update!You can check your child theme with Theme Check plugin.
No need to activate the theme.Forum: Fixing WordPress
In reply to: Center the slider text, MamboYou are welcome^^
Forum: Fixing WordPress
In reply to: Center the slider text, MamboWhere did you put the css?
In the style.css of your theme ( rambo theme ), there isleft: 12%;and that has a priority.
If you can’t touch style.css, then change css a bit like so:.banner .banner_con { position: absolute; top: 15%; left: 0; right: 0; margin: auto; width: 450px; z-index: 0; padding: 20px; text-align: center; float: none; }BTW, I think
padding: 0;would be better.Forum: Fixing WordPress
In reply to: Center the slider text, MamboHi @alenahr.
This css should work.
Replace .banner_con styles with the following..banner_con { position: absolute; top: 15%; left: 0; right: 0; margin: auto; width: 450px; z-index: 0; padding: 20px; }Forum: Fixing WordPress
In reply to: CSS helpActually that css only hide cursor, but still they can be clicked.
To prevent clicks, you need to use javascript, if you leave template as is.something like
jQuery(".woocommerce-LoopProduct-link").on('click',function(){return false;});Forum: Fixing WordPress
In reply to: CSS helpI think it would be better to modify template file, but you can hide cursor like so:
.woocommerce-LoopProduct-link { cursor: none; }FYI
https://docs.woocommerce.com/document/template-structure/Forum: Fixing WordPress
In reply to: How to restore my front pageSince your theme is a premium theme, I cant check myself.
You would better ask for the theme author or use forum there.Forum: Fixing WordPress
In reply to: How to restore my front pageHi Henry.
What is your settings of “Front page displays” section in Settings — Reading page.Could you give me url of your site?
Forum: Fixing WordPress
In reply to: featured image is not working during post previewUmm, I checked with TwentySixteen and TwentyFifteen, both works fine.
Forum: Fixing WordPress
In reply to: How to remove from the home page "Posted in Uncategorized"?Yeah, its kinda complicated for just hide one line.
If you choose to edit css, forget about step1,3,4 and take step2 to make a child theme.
In the course, you make style.css in your new child theme directory.
Just add the css rule in style.css of the child theme:
.post-data { display: none; }Lastly, dont forget to switch theme to the child theme.
@sterndata, thank you. Ah, custom css plugin would be a easy choice!
Cheers!
Forum: Fixing WordPress
In reply to: How to remove from the home page "Posted in Uncategorized"?OK.
Can you follow the above steps?Even if just edit css(style.css), it is strongly recommended to make child theme.
@sterndata, is not it .post-data instead of .posted-data?
Forum: Fixing WordPress
In reply to: featured image is not working during post previewHi,
What if change your theme to default theme like TwentySixteen?
I can’t replicate it in my environment.Forum: Fixing WordPress
In reply to: How to remove from the home page "Posted in Uncategorized"?Which theme do you use?
Steps to follow would be something like this:
1. Check which template file is used for the home page. Show Current Template plugin is a good tool, for example.
2. Create child theme to customize the template. Follow these steps:
https://codex.wordpress.org/Child_Themes3. Copy the template file from parent theme to child theme directory.
4. Delete block related to displaying “Posted in Uncategorized”.