aimkbe
Forum Replies Created
-
Hello, any luck with a solution?
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Custom fieldsok thank you for that!
Forum: Plugins
In reply to: [WP Social Sharing] Displaying icons with shortcodei see the icon_order=’f,t’
im guessing that is to display the different icons, what is the letter for Pinterest? I tried using p
Forum: Plugins
In reply to: [Custom Fields Display] Display positioning…Hello,
I don’t think the problem was resolved.
I have the same question… It’s very simple to reorganize the custom fields, but how can we make the custom fields come AFTER the CONTENT rather than AFTER the TITLE. Thank you!
Forum: Plugins
In reply to: WP Custom Fields Search error when there are 5 or more fields to searchI’ve been scouring the wp custom fields search support, but I haven’t found any answers.
I came across your name and you have solved a few of peoples problems with the WP Custom Fields plugin, so I hope you can help me.
hello @cchitaranjan.thoudam
i’m a new user to the CGVG… i’ve been having a issue with the paginate function with this plugin. I visited your page and it seems you’ve figured it out… can you help me out?
Forum: Plugins
In reply to: [Imsanity] [Plugin: Imsanity] Resize Gravity Forms Post ImageI too am looking for a solution. Any luck @darren burns?
I tried using auto image resizer, but that doesnt even work for me… can you help me out?
Forum: Fixing WordPress
In reply to: how do i hide my html table if there are no valuehello @alchymyth
I have one more question, hopefully the last.
BTW your advice for hiding the tables worked like a charm, thank you.
Now, i wanted to add a more tag before the tables. I know in the edit post page all you need to do is add
<!–more–>
but that only blocks the content. How would i add that in my single.php to activate the more tag for the tables?
Thank you.
Forum: Fixing WordPress
In reply to: how do i hide my html table if there are no valueDAMMIT @alchymyth !!!
THANK YOU SO MUCH!
Forum: Fixing WordPress
In reply to: how do i hide my html table if there are no valueThank you so much, i used your example for all my tables, but i have a issue with one. I think it’s because some of the value is an array…
<?php
$certificates = get_post_meta($post->ID, “certificates”, true);
$credential/license_ = get_post_meta($post->ID, “credential/license_”, true);
$single_subject = get_post_meta($post->ID, “single_subject”, true);
if( $certificates || $credential/license_ || $single_subject ) : ?>
<table border=”1″ id=”certification”>
<caption STYLE=”text-align:left”><h2>Certificates/Credentials</h2></caption>
<tr>
<th width=”19%”>Certificates</th><td><?php $key=”certificates”;
if(get_post_meta($post->ID, $key, true)): ?>
<p><?php get_post_meta($post->ID, $key, true); the_field($key); ?></p>
<?php endif;?></td>
</tr>
<th>Credentials</th>
<td><?php $key=”credential/license_”;
if(get_post_meta($post->ID, $key, true)): ?>
<p><?php get_post_meta($post->ID, $key, true); the_field($key); ?>
<?php endif;?> <?php $key=”single_subject”;
if(get_post_meta($post->ID, $key, true)): ?>:
<?php get_post_meta($post->ID, $key, true); the_field($key); ?></p>
<?php endif;?></td>
</table>
<?php endif; ?>Thank you again alchymth
Forum: Plugins
In reply to: [Audiobar] [Plugin: Audiobar] Bounces me back to my landing pageHello I’ve been trying to sove this problem, but i havent been successful. Did you fix this problem?
Forum: Plugins
In reply to: [Audiobar] [Plugin: Audiobar] Bounces me back to my landing pageHello has anyone figured out this problem? I’ve tried everything and i cant seem to figure it out @carlocapocasa
Forum: Fixing WordPress
In reply to: Dropdown CategoryThank you I will try it out.
<a href="https://international.quackitup.com/author/$user = wp_get_current_user();">"><?php _e('My Uploads','wpms-network-sidebar-login'); ?></a>
[Please post code or markup snippets between backticks or use the code button.]Hello Joshua!
Thanks for your help, i figured out what my problem was, the code i needed to add was
<a href="https://international.quackitup.com/author/$user = wp_get_current_user();">"><?php _e('My Uploads','wpms-network-sidebar-login'); ?></a>
BUT, i am running into another problem, the link is showing up when i am signed in as an admin, but when i log in as a different user that is nt an admin, but and author, that link does not show up on the widget. Help please!