patternreplicas
Forum Replies Created
-
Thank you for dropping by.
I just tried your suggestion. The current post still shows in rpwe.
I have this in my child-theme functions.php:
add_filter( 'rpwe_default_query_arguments', 'rpwe_exclude_current_post' ); function rpwe_exclude_current_post( $args ) { global $post; $args['exclude'] = $post->ID; return $args; }
Am I missing something?
I tried Satrya’s suggestion but I don’t know how to apply it correctly, and it was breaking the widget instead. So I asked here:
https://stackoverflow.com/questions/27969574/exclude-current-post-from-recent-posts-widgetAkiTendo’s solution sounds better though, if he can provide the hack and we could add it in a child-theme?
Forum: Themes and Templates
In reply to: [Virality] Expand post content widthThanks for dropping. I had some help in the comments section here: https://wpdevshed.com/themes/virality/
Forum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.sure did! ??
Forum: Themes and Templates
In reply to: [Virality] Collapse-O-Matic content box don't respondResolved in the link posted above by Baden.
Changing the “Load Script Location” to “Header” instead of “Footer”, in the Collapse-O-Matic settings, made that the post’s height follow the Expand/Collapse features of C-O-M.Thanks for the support Baden.
Forum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.Thanks for checking that. It meant that it could be put to work with Virality. And it did : )
It was not after deactivating the other plugins nor even uninstalling C-O-M and reinstalling it. It was as simple as changing the settings of the “Script Load Location” to “Header”.Could this mean that the Virality theme has a preference for loading scripts in the header than in the footer? I’m very new to all this, but I’ll remember that next time I install a plugin that gives me the choice or when add code to the child-theme.
You rock in the support, Baden! Thank you!
hugsForum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.Sure will buddy! The Virality theme devs said they suspect it is “conflicting with other jQuery effects that the theme is using.”
My knowledge is very limited for this level of manipulation of the codes. So I’ll focus at finding an equally good Collapse/Expand plugin. I’m guessing it won’t be easy.Thanks for being there.
@akitendo: I need to apply the same, but my knowledge in coding is practically none. Do you have a recipe? Can it work if I add it to my child-theme?
Hi fellows! I’m not figuring out how to display the results in columns. Do I add the part from “<?php … until add_filter( ‘display_posts_shortcode_post_class’, ‘be_display_post_class’, 10, 4 );” to my child-theme functions php? And shall I add the class
.two-thirds {
float: left;
margin: 0 0 20px;
padding-left: 3%;
}
to my child-theme css style sheet?
I guess not cuz it’s not working; please enlighten me. What am I doing wrong?Forum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.Done. Still the empty space at the bottom. Any suggestions? Or info that I can provide to you?
Forum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.Sorry about that. here goes:
[expand title=”Desenrole a Transcri??o aqui” trigclass=”comtitle”]Hidden text[/expand]
In the C-O-M options, inside the Custom Style box, I have:
.comtitle {
color: #dd9933;
}Inspect Element PrtSc:
https://drive.google.com/file/d/0BwA1IuXMUSGINUdjS2JmM2ZSc28/view?usp=sharingForum: Plugins
In reply to: [Collapse-O-Matic] Post expanded even when C-O-M is not.It’s not online yet. Maybe I can create some screenshots and link them here and you can guide me if you find something? Which part of the html should I PrtSc?
https://drive.google.com/file/d/0BwA1IuXMUSGId1FFWmlpMktXUDQ/view?usp=sharing
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Format Post TitlesHi!
It worked! thanks!! And I’m really glad cuz I was just realizing that it could be because of the Personalize Theme options which had the links color set to orange. This way I wont need to change all links on the site but only these titles. I’ll try it one more time but it seems to be ok : )
Thank you once again for being there!Forum: Plugins
In reply to: [Related Posts by Taxonomy] Format Post TitlesThis is what I have in the style.css from the child-theme:
.related-gallery .gallery-caption {
font-weight: bold;
font-size: 20px;
line-height: 110%;
}
.related-gallery .gallery-caption a {
color: #316272;
}It didn’t work for the color. Any suggestions?
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Format Post TitlesThank you! It worked! : )
Any idea why it doesn’t work to set a different color? I added 2 other lines in the css –
line-height: 110%;
color: #316272;
– and only the color one didn’t work.
And how to remove the underline? I would like to make it respond in the same way as the rest of the website’s posts titles: have the same color (now is set to a blue, not underlined) and to turn orange when hover.
Can you help me with these?