caroline
Forum Replies Created
-
Oh dear, I could just use overflow:auto; here!
🙂 Screenshot of my issue here: https://cloud.githubusercontent.com/assets/4196130/21639929/1492a922-d273-11e6-9242-0f1e7e0b0de6.PNG (open in new tab)
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] My QuickDirect Won't Open in a New WindowIt works for me, I just installed the plugin and selected jQuery in Quick Redirects -> Redirect Options.
(And I don’t even have the latest WP version)
Forum: Themes and Templates
In reply to: Template for TaxonomiesI noticed that these templates only works with hierarchial taxonomies. Strange…
Example: my taxonomy are “colours” and the terms are “blue” “red” “green” etc.
These are not hierarchial, so how can I create one template for all these colours?Forum: Themes and Templates
In reply to: Space under footerThanks for your help!
When I started following your steps, my patience started to lack!
I decided to skip my childtheme in TwentyFifteen and do a core update and create a new childtheme in Twenty Sixteen instead.However, I noticed the error while building a new childtheme in TW16. It was my mega-menu with specific height that messed it up from the beginning. I didn’t have to update after all, but it doesn’t matter anymore. I’m happy now =D
Thanks!Forum: Themes and Templates
In reply to: Space under footerThe child theme is my own, I built it myself.
Do you recommend change theme to make it work properly again?
Forum: Themes and Templates
In reply to: Space under footerStill no luck!
I noticed that the footer is supposed to be inside the body-tag, but it appears not to be so.
There is no other closing body tag in these specific files. The space beneath the footer are always 100% extra depending on the size of your screen.
Can’t find the errors here so appreciate any help!Forum: Themes and Templates
In reply to: Space under footerHi!
It’s a child theme of Twenty Fifteen!
Thank you!
I understand but also strange because the code below here shows the thumbnails, and it sets thumbnail-size.
550x are my full size. 130×130 are my thumbnail size (still larger but still not 550)Do you know if I can do something else in this code to change it?
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( $_page->ID, 'thumbnail' ); ?></a>Thanks Umesh! Here it is: https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.makeupedia.se&tab=mobile
Forum: Fixing WordPress
In reply to: Insert code in index.php & content.phpThank you Marios!
I didn’t understand that the opening and closing tag was mandatory in the end. It works fine now, glad for your help!
Found a solution here http://wordpress.stackexchange.com/questions/60292/wp-query-to-get-child-pages-of-current-page and did a minor tweak!
This code below works just as I wanted!
<?php $args = array( 'post_type' => 'produkt', 'posts_per_page' => -1, 'nopaging' => true, 'post_parent' => $post->ID, 'order' => 'ASC', 'orderby' => 'menu_order' ); $parent = new WP_Query( $args ); if ( $parent->have_posts() ) : ?> <?php while ( $parent->have_posts() ) : $parent->the_post(); ?> <div id="parent-<?php the_ID(); ?>" class="parent-page"> <h1><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( $_page->ID, 'thumbnail' ); ?></a></h1> </div> <?php endwhile; ?> <?php endif; wp_reset_query(); ?>Forum: Plugins
In reply to: [WP Customer Reviews] Edit template / languageThank you it now works!
Yes I will keep that in mind, wasn’t too hard to fix 🙂Forum: Plugins
In reply to: [WP Customer Reviews] Edit template / languageI changed these files while the plugin was deactivated – didn’t worked. So I tried while the plugin was activated and still nothing happens.
Is it impossible to change language?
Forum: Plugins
In reply to: [WP Customer Reviews] Edit template / languageThanks for this!