tinevdh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Instagram Widget] Stopped workingSame for me..
Forum: Fixing WordPress
In reply to: Leverage caching, plugin upload, media upload issuesThe permission aren’t the problem unfortunately, I checked them all already
Forum: Fixing WordPress
In reply to: Category pages no longer workingFixed!
Forum: Fixing WordPress
In reply to: Category pages no longer workingupdate: I restored some old backups I had from back when it still worked (and yes, I am 500% sure it worked at that time) and when I rechecked my site, it still wouldn’t work so I’m assuming it has nothing to do with any plugins I may have added the past few weeks?
Forum: Plugins
In reply to: [Social Share Icons & Social Share Buttons] Pop up keeps coming backHi KozyLiving, no there isn’t a solution yet but they told me they’re working on one!
Forum: Plugins
In reply to: [Homepage Pop-up] Disable on mobileI’m very interested in this as well ??
Forum: Plugins
In reply to: [Social Share Icons & Social Share Buttons] Pop up keeps coming backThanks for the quick reply socialdude, I’ll send you an e-mail with the information!
Forum: Plugins
In reply to: [Simple Social Icons] No Option to show on posts/pagesThat would be a great option indeed, just to remind visitors where they can follow you. Now they can only see it in the widget area, where they might miss it.
Forum: Plugins
In reply to: [Genesis Sandbox Featured Content Widget] Pagination not showing upI have the same problem :/ Did you find a solution by any chance?
Forum: Plugins
In reply to: [Genesis Sandbox Featured Content Widget] Pagination not shownI have the exact same problem! It works fine on the home page but not on any other page. Did you figure out a solution by any chance?
Forum: Plugins
In reply to: [Genesis Sandbox Featured Content Widget] Pagination don't showI have the exact same problem! It works fine on the home page but not on any other page. Did you figure out a solution by any chance?
Forum: Plugins
In reply to: [Genesis Grid] Images goneFixed it! I once read a post here that suggested adding:
.teaser .entry-content,
.teaser .post-info,
.teaser .entry-meta {
display: none;
visibility: hidden;
}to only show images and titles, but by doing so it also hides the image so I changed it and added a p on the first line, so it’ll hide the text of the post, but not the image:
.teaser .entry-content p,
.teaser .post-info,
.teaser .entry-meta {
display: none;
visibility: hidden;
}Forum: Plugins
In reply to: [Genesis Grid] Images goneEdit, the link I posted didn’t work, simply go to
www.tineathome.com/recipes
and chchk one box (for instance, desserts) and you’ll end up on the grid without images ??<a href="https://tineathome.com/?qmt[course][]=9"></
a>Forum: Plugins
In reply to: [Query Multiple Taxonomies] Not showing all the term itemsFound a solution!
in Widget.php, I found this piece of code:`private function get_terms( $tax ) {
if ( is_taxonomy_hierarchical( $tax ) || $this->all_terms )
return get_terms( $tax );
else
return get_erms::get( $tax );
}
`
I just removed the if/else part and only put down: return get_terms($tax) and now it works perfectly!Same problem here!