cgoldt
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Lightbox] Open Lightbox Gallery from custom text linkHi Archetyped,
thanks for the quick response. I would like to place the link directly in the template file instead of the post. Your quick tutorial just helped me to add it to the post. Do you have any hint how to modify it to work in the template file?
Thanks a lot!
CaraForum: Plugins
In reply to: [Material Design for Contact Form 7] CSS/Plugin not working correctlyJust discovered the problem.
I had a broken svg image in the footer. For that reason all the scripts in the footer didn’t load correctly.Updating the Plugin worked for me!
Thanks for your help!
CaraForum: Themes and Templates
In reply to: Customized wp_get_archives LinkI solved it like this:
add_filter( 'get_archives_link', function( $link_html, $url, $text, $format, $before, $after ) { if ( 'custom' == $format ) { $link_html = "\t<li value=\"". esc_attr( $text ) ."\" data-filter-value=\".classof". esc_attr( $text ) ."\">$before<a href='$url'>$text</a>$after</li>\n"; } return $output; }, 10, 6 );
Thanks to this answer on stackoverflow.
- This reply was modified 7 years, 10 months ago by cgoldt.
Forum: Themes and Templates
In reply to: Customized wp_get_archives LinkHi, could somebody help here? Thanks in advance! Cara
- This reply was modified 7 years, 11 months ago by cgoldt.
This would be a helpful feature. Because without the possibility to have one event happening more than one time I always would need to add a new event with the same description. Is there a possibility to just copy an existing event and change date and venue?
Forum: Everything else WordPress
In reply to: Hide URL from topic postI’m developing this site for a client, and they don’t want the site to appear somewhere, until it’s not officially online.
Forum: Everything else WordPress
In reply to: Hide URL from topic postI actually don’t care so much about the channel key, but would be grateful if you could remove the value of the “url” field. This website is still on my development server and is not supposed to be found via google or seen by anyone else.
Thanks in advance!
C.Forum: Plugins
In reply to: [My YouTube Channel] No items?I found the solution. There might be some bug with the version 2.0. I downloaded the develelopment version 2.1 from here – and it worked.
Another topic regarding this issue:
https://www.ads-software.com/support/topic/version-200-problemsForum: Plugins
In reply to: [My YouTube Channel] No items?Any hints/suggestions on this??
Forum: Plugins
In reply to: wp_list_categories / just show categories that are also assigned to IDHi antonietta456,
I tried this already and it’s unfortunately not that easy. That’s not what I’m looking for.
Using your code I just get one category shown in the list:
archive (2)But I want to show all categories that that are TOGETHER with archive assigned to posts, like:
cat_melone (1) (there is one post assigned to archive AND cat_melone)
cat_kiwi (1) (there is another post assigned to archive AND cat_kiwi)Do you know, what I mean??
Forum: Plugins
In reply to: wp_list_categories / just show categories that are also assigned to IDThis is actually not, what I need.I’m sorry, I obviouslly didn’t explain it quite clearly. I don’t want to show the titles, I would like to have category list like I get with <?php wp_list_categories(); ?>. Just with this custom filter.
That means the catlist on my category-archive template should look like this (showing all categories, with posts, that have also the ARCHIVE category assigned to):
cat_melone (1)
cat_kiwi (1)Sorry, this seems kind of complicated ??
Forum: Plugins
In reply to: wp_list_categories / just show categories that are also assigned to IDHey antonietta456,
thanks for your reply.
You mean, instead of using <?php wp_list_categories(); ?> I should insert a custom query with conditional tags in my sidebar, that is just outputting my category names?Forum: Fixing WordPress
In reply to: Multiple WP_Query – Performance Problemsnobody can help to optimize? pleeease! ?? cara
Forum: Themes and Templates
In reply to: Saving category ID in global variableI’m still looking for a solution. Can anybody help please?