Amy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multi-file uploader isn't working. Warning call_user_func_arrayI should have dug deeper before posting. It was my theme. I had:
<?php add_filter('upload_size_limit', '100000'); ?>
in my functions file and it was causing the issue.
Thanks!
Forum: Plugins
In reply to: [Slideshow] Do Not Upgrade to 2.2.12I was able to get the slideshow to display again by turning:
Fit image into slide (Stretch image) to “YES”
version 2.2.13
Forum: Plugins
In reply to: [Slideshow] Do Not Upgrade to 2.2.12White space here too…
2. Is there a widget to show the directory tags?
Just wanted everyone who was asking about a Directory Tag Cloud widget, I was looking into the same thing and used the plugin:
Ultimate Tag Cloud Widget
https://www.ads-software.com/extend/plugins/ultimate-tag-cloud-widget/It works for me!
Hi starsunflower,
I was having the same issue. I am not sure what is causing the widths to be so large.
You were close with your:
.youtubechannelEntry {height: 200px; width: 200px !important;}
Change it to:
.youtubechannelEntry img{height: 200px; width: 200px !important;}
Forum: Fixing WordPress
In reply to: Linkable Email Custom FieldThank you very much for your help esmi! Can’t believe I missed that. Must’ve been staring at it for too long.
When I corrected that, the page finally displayed but that code outputted:
“Email: Array”I added in the “true” on all and it works perfect now. Here is my complete code now:
echo '<span class="email">'; if ( get_post_meta($post->ID, "email", true) ) echo 'Email: <a href="mailto:' . get_post_meta($post->ID, "email", true) . '">' . get_post_meta($post->ID, "email", true) . '</a>'; echo '</span>';
Thanks again!
Forum: Fixing WordPress
In reply to: Linkable Email Custom FieldSorry for being a pain…I am trying every which way but still the last suggestion is still not working. Giving me this now:
unexpected T_ECHO, expecting ‘,’ or ‘;’
Forum: Fixing WordPress
In reply to: Linkable Email Custom FieldThat did not work either. ??
Same error output again.Forum: Fixing WordPress
In reply to: Linkable Email Custom FieldWhoops, can believe I forgot the “mailto:” in there. DOH!
But it is still giving me the same syntax error, overall:unexpected T_STRING, expecting ‘,’ or ‘;’
I have been searching for a way to do this as well. Did you ever find one?
Forum: Fixing WordPress
In reply to: 3 WordPress Installs – 2 Password Protected! HELP! :)THANK YOU SOOOOOO MUCH MickeyRoush…that looks to have solved the problem, for now ?? Hope it doesn’t decide to go and break itself mysteriously in the future. If so, I will be back!
I used your second recommendation and put the below into the .htaccess file for the TCM Login / TCM directory:
ErrorDocument 401 /tcm/401.html AuthType Basic AuthName "TCM Only" AuthUserFile /home/USERNAME/.htpasswds/public_html/tcm/passwd <Limit GET> require valid-user </Limit>
I can’t even give you enough thanks!
– Amy