valgosais
Forum Replies Created
-
Forum: Plugins
In reply to: [Thumb Fixer for Social Media] Doesn't workWow!! You are the best indeed!
Thankyou so much for your help, now it works sweet! ??
Andrea
Forum: Plugins
In reply to: [Thumb Fixer for Social Media] Doesn't workDone, reactivated it with all the settings. I’m terribly sorry.
thankyou very much Micheal, if you can have a look.Andrea
Forum: Plugins
In reply to: [Thumb Fixer for Social Media] Doesn't workYes, true, because of some attemps, i momentarely deactivated it.
I will activate it now. If you can still help me please?
Forum: Plugins
In reply to: [Thumb Fixer for Social Media] Doesn't workI’m terrybly sorry
this is my web site https://www.edelweiss-valdidentro.com
I have the problem under blog section, and to share those post that have the featured image but is is hidden by css.
Thanks
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Hide featured image on pages, not postsJbarragan, if i understand it correctly you want to hide the featured image of some post (in post view or category view?).
I solved my problem by setting a specific category (blogging-it) to those post i want the featured image hidden, and then added these code to css:
/*hides featured image in single post view of specific category*/ .category-blogging-it img.wp-post-image { display: none; }
/*hides featured image in category view*/ .category-50 .post-thumbnail img { display: none; }
of course blogging-it is the name of my category, and -50 is the id number of my blogging-it category. Did I help?
Forum: Plugins
In reply to: [Thumb Fixer for Social Media] Doesn't workForum: Themes and Templates
In reply to: [Twenty Fourteen] Hide featured image on pages, not postsI solved it in this way:
/*hides featured image in single post view of specific category*/ .category-blogging-it img.wp-post-image { display: none; } .single-post .category-blogging-it .entry-header { padding-top: 150px; }
Of course blogging-it is the name of my category. I had to give the page some padding for better wiewing.
Thanks though Hannas
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Hide featured image on pages, not postsI’m using this code
/*hides featured image in category view*/ .category-50 .post-thumbnail img { display: none; }
to hide the featured image of specific category in category view.
I have a question:
How do I hide featured image in single post view of specific category?Thanks
Forum: Hacks
In reply to: Hide featured image to posts in a specific categoryThankyou man!
I solved it in this way
/*hides featured image in category view*/ .category-50 .post-thumbnail img { display: none; }
Of course my category was nr. 50. That’s a variable.
Forum: Themes and Templates
In reply to: Primary menu jumps over header image if scrolling downsolved.
added this script to functions.js of my child theme
Changing line 63 of functions.js from this:$( function() { to this: _window.load( function() {
added this script to functions.php of my child theme
function twentyfourteen_child_scripts() { wp_enqueue_script( 'twentyfourteen-script', get_stylesheet_directory_uri() . '/js/functions.js', array( 'jquery' ), null, true ); } add_action( 'wp_enqueue_scripts', 'twentyfourteen_child_scripts' );
Forum: Themes and Templates
In reply to: Widget overlaps sticky primary menu twenty fourteen/* risolve overlap di booking.com engine sullo sticky menu
#flexi_searchbox {
width: 100%;
position: relative;
text-align: left;
background: #FEBA02;
z-index: 1 !important;
height: auto;
}
*/Thankyou!
Solved with this code. It was indeed a css problem.
/* risolve overlap di booking.com engine sullo sticky menu*/
#flexi_searchbox { width: 100%; position: relative; text-align: left; background: #FEBA02; <strong>z-index: 1 !important;</strong> height: auto; }
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Bug in functions.js; please fix!It’s seems to really work this time! Thankyou all
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Bug in functions.js; please fix!yes, of course. The tag is already open. Thankyou though for your preciceness.
One weird thing I englight:
– if i do this modification from filezilla notepad, i’ve get back the white screen of death (the reason of my previous post)
– if i do this modification from editor in my dashboard into my functions.php (of my child theme), it does not the white screen.Now i test it. Thankyou man!
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Bug in functions.js; please fix!In my child theme I have my functions.php with the new funcionts i want my wordpress site to apply.
shall i copy your code to that file?
If i do that:
1) my wordpress site gives me the white screen of death