nicoretina
Forum Replies Created
-
any idea?
Forum: Plugins
In reply to: [Lightbox - EverlightBox Gallery] no image in lightboxI did a complete reinstall of wordpress. Didn´t solve my problem.
Could it be that Everlightbox is not compatible with WordPress 4.9 ?Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Images jump on hover in SafariI also switched themes to the standard “Twentyseventeen” one gallery worked the other didn´t.
And now somehow every link is associated with the everlightbox. So when you press a link in the menue the lightbox opens.
The theme is simple and based on twentyfifteen.
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Images jump on hover in Safarijust tested it on another machine: el capitan + safari 9.1: jumps
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Images jump on hover in SafariThank you for looking into it.
I tested it on three macs, on two the jump of the images occur on the oldest it doesn´t.Mac Mavericks, Safari 9.1 – jumps
Mac High Sierra, Safari 11 – jumps
Mac Mountain Lion (the old mac mini in the corner), Safari 6.8 – no jumps (doesn´t make sense)All other browsers function perfectly fine and “below the mobile brake point (800px)” of the site, it functions fine.
Superstrange.
- This reply was modified 8 years, 1 month ago by nicoretina.
- This reply was modified 8 years, 1 month ago by nicoretina.
- This reply was modified 8 years, 1 month ago by nicoretina.
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Images jump on hover in SafariThank you, email is on the way.
Forum: Plugins
In reply to: [Gallery PhotoBlocks] fatal errorThank you very much, will try and feedback
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Images jump on hover in SafariThe problem doesn´t exist in Firefox oder Chrome and also disappears after the width of the site brakes to smaller device width.
Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryHello dear wordpress Members,
I took the turn for dummies, as I apparently dont get the simplest things to work.
Or I don´t seem to understand what is been told here…I used advanced custom plugin, this does it manually…well not the best, but with the hidden cryptic for insiders I unfortunately didn´t get anywhere and just felt like an idiot, reading a post 20 times….
if anyone might be less cryptic, I still very much appreciate it to get a hint what the second post here tries to imply.
greets!
Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryI don´t seem to get it to work, over and over again I only get the category/all posts the other posts in the childs category also have. But that is not what I need.
I ONLY need the posts of the SAME child-category.
Maybe I put it in wrong words? Any Ideas?
<?php $args=array( 'parent' => '1', 'order' => 'ASC', 'hide_empty' => '0', 'posts_per_page' => -1, 'offset'=> 1, 'category' => $category->term_id, ); $categories=get_categories($args); foreach($categories as $category) { $output = ' <h3>' . $category->name . '</h3> '; echo $output; } ?>Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryyes sorry…but I only get errors/white page…I simply don´t have enough knowledge of php to replace THE ID YOU WILL GET and output anything
Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryok I have the list of only the other childs category…GREAT…. but I end up with errors when trying to call the other posts in that cat. The only non error comes up when I simply list that categories name…well its my first more complicated loop….
<?php
$args = array(‘parent’ => 1
);
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo ‘term_id ) . ‘”>’ . $category->name . ‘‘;
}
?>Forum: Fixing WordPress
In reply to: get current post child category display all of this categorymaybe then I have a syntax problem…hang on! Thanks for helping me! …. you put some count or unequal 0 snippet to it???
sorry I am not such a pro, to just code perfect loops….
Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryyes ok….I manage to list all child categories of the posts parent.
But I didn´t arrive at listing ONLY the posts of the childscategory of the post (hope this is clear).
My structure ist like this
-parentcat
– childcat (with 8 post) —> in each of these posts I want to display all the other 7 excerpts
– childcat (with 6post)—> in each of these posts I want to display all the other 5 excerpts
– childcat (with 11post)—> in each of these posts I want to display the other 10 excerpts
Forum: Fixing WordPress
In reply to: get current post child category display all of this categoryGreat thank you for your help!
But unfortunately I don´t quite understand what this means
“Non 0 parents”zero parents IS the parent category…
or am I misunderstanding you?