nfrost21
Forum Replies Created
-
Forum: Plugins
In reply to: [Super RSS Reader - Add attractive RSS Feed Widget] HTML entity issueStrange – only seems to be affecting that one title. I’ll try and fix with some jquery magic. Thanks for your help.
Forum: Plugins
In reply to: [Super RSS Reader - Add attractive RSS Feed Widget] HTML entity issueSure –
https://www.designlagoon.es/abde_test/quienes-somos/
It’s the rss feed in the right hand sidebar.Looking at the source code – it seem to have converted & to & for one of the feeds.
Thanks,
NickForum: Fixing WordPress
In reply to: query_posts does not return results for multiple word tags.Many thanks alchymyth – Your solution worked like a dream.
As you say the query didn’t work as I was using the tag title:
'tag'=>single_tag_title('', false)
…and needed to use the tag slug. Here’s the fix in bite-size steps (all changes in tag.php):
1. set a variable for the current tag:
$current_tag = single_tag_title("", false);
2. In query_posts change:
'tag'=>single_tag_title('', false)
to…
‘tag_slug__and’=>array($current_tag)
…so the full code is:
`$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$current_tag = single_tag_title(“”, false);query_posts(array( ‘post_type’ => array(‘news’, ‘events’), ‘tag_slug__and’=>array($current_tag), ‘posts_per_page’ => -1, ‘caller_get_posts’ => 1, ‘paged’ => $paged));
Thanks again alchymyth!
Forum: Plugins
In reply to: Contact Form 7 – How to trigger 'File type not allowed' Validation MessageResolved –
The contact form was already working correctly. I was unaware that the validation message appears both at the bottom of the CF and overlaying the erroneous field input.
Nothing to see here. Please delete!
Forum: Plugins
In reply to: Internal Stock Control pluginTop of the afternoon –
I’m looking for something similar – ie: basic stock control without e-commerce. When the site owner makes a sale (by phone / email) they can update the remaining amount of a particular product in the back-end.
My current plan is to try to adapt the getShopped plugin though i’m not sure it will be possible.
Perhaps this is bending the limits of wordpress’ funcionality and Drupal would be a better option? – Would be interesting to get some feedback from a more experienced wordpresser!
Forum: Fixing WordPress
In reply to: Problem Displaying Spanish Special CharactersHello –
It was a problem with the encoding of one of the files i had taken some HTML from.
I fixed the problem by:
1. changing text-encoding to UTF-8 in my text-editor (notepad ++)
2. Replacing the broken special characters in the file and
3. Uploading the UTF-8 encoded file.Hope this works for you!