iPixtitude
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Cannot connect to JetpackYes, I can confirm that it has been resolved.
What was the solution??
Forum: Themes and Templates
In reply to: [Hive Lite] Hive Lite Child themeHi Radu,
Think I found the solution. Both child theme plugins create a functions.php for the child theme. However, the closing tag
?>did not show at the end in both child themes functions.php’s. After I added the closing tag, front page looks exactly as it should.Thanks.
Kind regards,
Irene
https://www.ipixtitude.nl- This reply was modified 8 years ago by iPixtitude.
Hihi error… (my own!)
Noticed that in settings-general my domain name was not listed as https://
Sorry, about above-mentioned question. Not relevant…
Forum: Themes and Templates
In reply to: [Writee] Mobile Sidebar not loadingMobile sidebar is still not showing properly in Child theme. This Child theme was created through the Child Theme Configurator plugin. I also decided to go back to my original theme because of this.
Forum: Plugins
In reply to: [Social Comments by Heateor] Pull in Twitter comments?! SuggestionHello team!
I was wondering if your consideration for pulling in Twitter comments has had any effect, so far?
Kind regards,
Forum: Themes and Templates
In reply to: Split 'the_content' in three separate sectionsI found this piece of code (except the featured image coding) on the Internet. Google is my best friend…
I have indeed changed the double quotes. Thanks for that.
The $format and $fimg were defined in two files… but that does not matter anymore: I found a new snippet that I have put in the functions.php of my child theme (Sidewalk theme).
The snippet I used is as follows:
add_filter( 'the_content', 'insert_featured_image', 20 ); function insert_featured_image( $content ) { $content = preg_replace( "/<\/p>/", "</p>" . get_the_post_thumbnail($post->ID, 'post'), $content, 1 ); return $content; }Thanks a lot for your efforts on this issue.
Regards,
IreneNot since the update from yesterday… though.
Forum: Themes and Templates
In reply to: [Jkreativ Lite] Problems with youtube videosYess, when you are working in the text-editor, not when in WYSIWYG-editor on the top right where you type your blogpost.
Forum: Themes and Templates
In reply to: [Jkreativ Lite] Problems with youtube videosThat’s because the height is set to 100% in your style sheet. Look for iframe in your style sheet and remove the height: 100%.
Best way would be to put this in your blogpost:
<div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe width="560" height="349" src="blablablanameofmovie" frameborder="0" allowfullscreen></iframe> </div>And the following in your stylesheet (at the bottom):
.videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; height: 0; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; }Forum: Themes and Templates
In reply to: [Jkreativ Lite] Links placed by commenters not clickableAlso smiley’s are not working in this above context… π
Forum: Plugins
In reply to: [Social] WP themes and social comments integrationYess. And now I would like to know if you can manipulate this into a child theme, for instance??