LebCit
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Add custom css to single php pageYou are most welcome @kodave2012
Could you change the status of this question to resolved ?
SYAForum: Fixing WordPress
In reply to: slug of taxonomy cat@joloshop isn’t
APP_TAX_CATyour custom taxonomy ???Forum: Developing with WordPress
In reply to: Add custom css to single php pageYou could combine is_single and wp_add_inline_style
Another simple way would to add the class you want, so change this in single.php
<div id=”primary” class=”content-area”>
to this
<div id=”primary” class=”content-area content-area-about”>OR
Just use post_class like this for examplefunction example_add_post_class_to_single_post( $classes ) { if ( is_single() ) { array_push( $classes, 'content-area-about' ); } // end if return $classes; } add_filter( 'post_class', 'example_add_post_class_to_single_post' );Tell me if I can help further.
SYA 😉
Forum: Fixing WordPress
In reply to: slug of taxonomy catHello @joloshop,
Try th following
$my_terms = get_the_terms( $post->ID, 'APP_TAX_CAT' ); if( $my_terms && !is_wp_error( $my_terms ) ) { foreach( $my_terms as $term ) { echo $term->slug; } }Hope this help.
SYA 😉
Forum: Fixing WordPress
In reply to: Fatal Error–Please help me. I have no idea what is going on.Hello @thefitmess
Since you bought the theme, you should request support from the theme developer.
SYA.
Forum: Fixing WordPress
In reply to: How to remove white page wrapper on homepageHello @lauzon232
Without a link, we can’t see your theme’s CSS…
And I’m surely not going to download/open an image…
Post your image on a free service or your server and gives us all the related CSS.
This will maybe work, maybe not.
Alternatively, create a test sub domain of your site and give the link so we can see and help.SYA !
Forum: Fixing WordPress
In reply to: delete wordpress automatic nofollow filter -pluginHello @cooldavidoff,
Try the following in your functions.php
function commentdofollow($text) { return str_replace('" rel="nofollow">', '">', $text);} add_filter('comment_text', 'commentdofollow'); remove_filter('pre_comment_content', 'wp_rel_nofollow', 15); function remove_nofollow($string){ return str_ireplace(' nofollow', '', $string);} add_filter('get_comment_author_link', 'remove_nofollow');Hope this helps.
SYA 🙂
LebCitForum: Developing with WordPress
In reply to: Child theme not showing up in appearance panelHello,
Since their is no link to your parent theme (their are a lot of WP Bootstrap theme), can’t tell if the text domain is correct or not.
I’ll suggest to use a great plugin for child theme.
Child Theme ConfiguratorSYA 🙂
LebCitForum: Plugins
In reply to: [Full Screen Morphing Search] Pushes Admin Menu Off CanvasHello @nathaningram
First of all, thanks a lot for reporting your issue and sorry for my delayed response.
I’ve retested the plugin with multiple themes on local and live.
The plugin has no conflict with any WordPress team theme from 2011 to 2017.
It can be a plugins conflict !
Check out your other plugins to see witch one is forcing Full Screen Morphing Search to this behavior.SYA 🙂
LebCitForum: Fixing WordPress
In reply to: How to change drop down menu text color and hoverHello @specialkaylifts
First be sure to use a child theme for your customisation or the custom css in the Customizer.
You didn’t specify witch text you want to change!
I’ll assume the menu since your talking about hover
FOR COLOR.menu a { color: blue;/*change blue to your color */ }OR
.menu a { color: blue !important;/*change blue to your color */ }FOR HOVER STATE
.menu a:hover { color: blue;/*change blue to your color */ }OR
.menu a:hover { color: blue !important;/*change blue to your color */ }SYA 🙂
LebCit- This reply was modified 9 years, 4 months ago by LebCit.
Forum: Plugins
In reply to: [Full Screen Morphing Search] CustomizeHello @rubensandwiche
You can find all the CSS rules in the assets/css folder of the plugin.
You can also take a look under the Credits section of the plugin for more infos : https://wordpress.org/plugins/full-screen-morphing-search/SYA 🙂
LebCit.Forum: Themes and Templates
In reply to: Keep button pressedHello @pdegelder
Nice to hear that everything is working for you.
Please mark this topic as resolved 🙂SYA 🙂
Forum: Themes and Templates
In reply to: [Hueman] H1 size inside postHello @adriandambrine
Try this
.single .post-title { font-size: 20px; /* the actual size is 47px, vous pouvez changer comme bon vous semble*/ }si cela ne fonctionne pas 🙂 try to add !important
.single .post-title { font-size: 20px !important; /* this will force this rule to be applied */ }A bientôt !
SYA 🙂
LebCitForum: Themes and Templates
In reply to: [OnePress] How do I disable hovering effect on feature icons?Hello @beachsand14
This is how those icons are animated.
.feature-item:hover .icon-background-default { color: #333333; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }Of course, don’t forget to do your customization in a child theme or by using a custom css plugin or the new Additional CSS section in the customizer since WP 4.7
SYA 🙂
LebCitForum: Plugins
In reply to: [Full Screen Morphing Search] Recent Posts colorHello @cierrabaylor
Happy to hear that you like the plugin 🙂
I’m working on some improvements now 😉
Users will be able in a future update to customize everything in the cusomizer 😉
If you want to change the color of RECENT POSTS, TOP CATEGORIES and TOP TAGS titles do this.dummy-column h2 { color: red; /* replace red by your color or any hex value */ }If you want to change the color of the links under those titles do this
.dummy-media-object h3 a { color: red; /* replace red by your color or any hex value */ }Don’t hesitate if you have any other question.
SYA 🙂
LebCit