NWTD
Forum Replies Created
-
Forum: Plugins
In reply to: [Co-Authors Plus] Appending ACF to an author's name in the bylineI found my solution.
In
template-tags.php
on line 272, I added:$affiliation = get_field('school-organization', 'user_'. $author->ID );
on line 272, I called in the
$affiliation
variable. It worked like a champ. But since this will be lost on the next plugin update, this thread will be my reminder on how to update it, unless I can figure out how to add this to myfunctions.php
.- This reply was modified 8 years, 2 months ago by NWTD.
Forum: Plugins
In reply to: [Co-Authors Plus] Appending ACF to an author's name in the bylineFWIW, this is what I’m attempting to use to pull that value of the ACF:
$author_id = get_the_author_meta(‘ID’);
$affiliation = get_field(‘school-organization’, ‘user_’. $author_id );I’d like to second this request.
Thanks for the followup @iamthedan. I’ll give it a shot.
@iamthedan, what settings did you have to adjust to make this plugin work? I’m having the same exact symptoms (counting up and not importing items) and have W3 Total Cache installed.
Forum: Plugins
In reply to: [HC Custom WP-Admin URL] Multi-SiteI’d like to +1 this as well. I see a huge benefit for security and branding on why a multisite might need this.
Forum: Plugins
In reply to: [Easy Responsive Tabs] How to use this in template php file@oscitasthemes, Is there a way to get this to work with
the_content()
?I tried using your example in a page template for a single post type. One tab is getting the post’s excerpt, while another tab is supposed to get the content. The excerpt shows just fine, the content does not.
Any suggestions?
Thanks Cais. I did not receive a response to the bug report. So I used the support form in my Pro account. I did hear back a few hours later.
I’ll update this thread with a solution, for any one else still having the problem.
Is there a way to check the status of the bug report?
Yes, and done.
Forum: Plugins
In reply to: [Taxonomy Images] Adding a data attr to images and remove linkThis is a duplicate. A mod can remove this post.
Forum: Plugins
In reply to: [Taxonomy Images] Adding a data attr to images and remove linkOn that same topic, I need to also add a class to the images. I tried the following with no success:
echo apply_filters( 'taxonomy-images-list-the-terms', '', array( 'after' => '</ul>', 'after_image' => '</li>', 'attr' => array( 'class' => 'filter-tint', 'data-pb-tint-opacity' => '1', 'data-pb-tint-colour' => '#fff', ), 'before' => '<ul class="project-services">', 'before_image' => '<li>', 'image_size' => 'portfolio-showcase', 'taxonomy' => 'services', ) );
Forum: Plugins
In reply to: [WP Last Login] Date AND time@shonu, I think we can all agree that these free plugins should work for what we want, but one thing to remember is that these are free and so is the support.
Rather than exclaiming what should be, why not pass along some good karma to the plugin dev in the form of a beer to show appreciation for his work and in rice him to implement some new features…or better yet, fork the plugin on Git and contribute to the community ??
As stated above, there is a fix to make it work and its pretty simple.
Forum: Plugins
In reply to: [Simple Retail Menus] Multisite issueI think I have it fixed. Do you have a git for the plugin? I can fork my changes over.