EntarteteMuzak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Order post by titleThanks, but I solved it using this plugin:
https://www.reflectionmedia.ro/2008/12/wp-post-sorting-plugin/Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] Change menu name?Yes I meant the Menu title. I would be VERY handy if I could change those.
Yes, you are right. Ampersand as
&
now works (I guess I was refering to the previous version).Some bugs:
– “Target” value needs to be entered for each time I edit an entry.
– As for ampersands, & works fine, but if I edit the entry only & remains so I need to change it back to & if I want to save.Thanks for a great plugin
Forum: Themes and Templates
In reply to: PHP in Custom FieldSame problem.
I’m running run-PHP and want to add<ul> <?php wp_list_bookmarks('category=2&show_description=1&title_before=<h3>&title_after=</h3>'); ?> </ul>
to my custom field by using
<?php $key="Linklist"; echo get_post_meta($post->ID, $key, true); ?>
I even tried
<ul> <?php wp_list_bookmarks('category=<?php $key="Linklist"; echo get_post_meta($post->ID, $key, true); ?>&show_description=1&title_before=<h3>&title_after=</h3>'); ?> </ul>
but it seems like wp doesn’t tolerate php in template tags.
Forum: Fixing WordPress
In reply to: Invalid Characters in RSS FeedI thought of a php snippet that could replace bad characters such as this:
<?php // Function used to replace Bad Characters function BadChar($Phrase=''){ $SearchValues = array( "\xA0", "?" ); { // Replace phrase with space $ReplacementValues = array( " " ); } return str_replace($SearchValues, $ReplacementValues, $Phrase); } ?>
But it didn’t work…
Can’t say that I’m any good at php though…Forum: Fixing WordPress
In reply to: Invalid Characters in RSS FeedSame problem here.
Most irritating.Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] Change menu name?Some other minor things:
- If I enter a
&
it is not changed to&
But if I enter&
it is changed to&
- The target value is not listed after hitting update.
Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] Change menu name?Thank you for your swift answers.
But I’m afraid that I sound like a broken record when I say that I still can’t find a way to edit main menu names, just sub-menu entries.Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] Change menu name?I have the 1.05 (at least that is what the plugin-manager is saying).
The documentation link still points to the wrong place: https://www.ultimateidx.com/menu-creator/
and not
https://www.ultimateidx.com/menu-manager/I still can’t find where to change the name of the menu.
Where do I find that?Forum: Fixing WordPress
In reply to: wordpress loading slow > 45 s per pageYeah, mine is also rather slow.
How did you solve it?Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] Change menu name?Thank you.
But… where do I do this?
I upgraded to 1.0.5.I’m a bit concerned about the new feature to add link target, since it is not XHTML compliant. Could you perhaps make to plugin ditch the target=”” output if no value is selected?
One last thing. None of the documentation links in the plugin are working, they all take you to the same 404-page.
/E
Forum: Themes and Templates
In reply to: If parent X include page Y?Ok
Forum: Themes and Templates
In reply to: If parent X include page Y?One last question.
If I want to bypass the plugin on one page is it enough to just create a category page (say category-15.php) for that category?Forum: Themes and Templates
In reply to: If parent X include page Y?Oh… (blush).
It works.
Thank you for your patience.Forum: Themes and Templates
In reply to: If parent X include page Y?Tried that, didn’t work.
If my parent is id 3 I create a file called category-3.php and embedd the code I want to display.
I put the Child Force Category Template in archive.php and remove everything else for that file.And…… nothing. Blank.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] How to put 2 Slideshows on SidebarHi cipote,
If I want another slideshow widget (not random images), I add
<?php function nggSlideshowWidget($galleryID,$Width,$Height) ?>
to my sidebar.php?Hmmm…
That didn’t work.What I want is six slideshow widets which I can place in which sidebar I please (sidebar1, sidbar2, etc).
- If I enter a