debsch
Forum Replies Created
-
No worries! Glad I could help. It is a great plugin – makes the back end look neat and tidy.
And as I said before Ich habe ein bisschen Deutsch gelernt (in Luxembourg 20 years ago!) if I can help again just ask.
And if you want you could also change “ATTENTION:” (which sounds dramatic and sounds like there is an error, when there is no error) to “PLEASE NOTE:”
Also, hope you don’t mind me correcting these spelling errors too, on your plugin description page… http://wordpress.org/extend/plugins/adminimize/
Scoll automatocly to the Textbox, when you click the write-button.
Scroll automatically to the Textbox, when you click the write-button.“Please note: The Adminimize settings page ignores the Menu Options below and displays the menu with all entries.“
Optional addition to the message above… a call to action…
“To view your changes to the menu you need to navigate away from the Adminimize settings page.”
So I read over and over what you said and NOW I UNDERSTAND!
🙂
If I make a change, for example, use Adminimize to hide the TOOLS menu item (between USERS & SETTINGS), while logged in as admin, I need to navigate away from Adminimize, to a different admin page, to see that the TOOLS menu has disappeared! If I stay on the Adminimize settings page, I can STILL SEE TOOLS, the Adminimize menu settings are ignored…
I know what you mean now!
I will post up what I think is a good (short) explanation in English and if you want you can use it.
Forum: Plugins
In reply to: [Category Subscriptions] [Plugin: Category Subscriptions] Custom taxonomies?me tooo…. Also looking for a SIMPLE email newsletter for CUSTOM categories not just default ones. Category Subscriptions plugin is nice and simple, not too fussy, but is missing the custom taxonomies. Can they be added?
Hi and thank you for your reply.
Correct grammar for the message is:
“The settings page ignores these settings and views all areas!”But I’m still not sure what the message means.
I’ve updated some settings on options-general.php?page=adminimize/adminimize.php and everything is working, things are hidden from certain users. The message still displays. So I’m not doing something.Which “settings page” do you mean? Could you add a link or “call to action” to the message to tell people how to fix the error?
I do understand basic German. Could you write here the German version of that message please? Maybe that will help.
try
'post_type' => array( 'post', 'event' )
to bring up both regular posts and event posts.How about trying a conditional statement?
http://codex.wordpress.org/Conditional_TagsPut it on single.php and say something like
if (is_front_page()) { //show this style } else { //show that style }They do give some examples at the bottom of the Conditional_Tags page to help you out.
OR
Here’s one I’ve used a lot, because I want posts showing one way and custom type posts showing another way, is….
if ( 'event' == get_post_type() ) { //show my events this way } else { //show my posts this way }Hi misslivvy,
Yes the location form works on my public event submission form, but only after typing the whole address in.
I know it’s frustrating when you have no idea what’s causing the problem. Is there anyway you can set up a test version of wordpress & events manager – and only those two, no other plugins, everything else default? And then slowly add on what you need to find out what is causing the conflict?
I was stuck too!
You need to find out where
echo $EM_Event->output_single();(from themesfolder…/plugins/events-manager/templates/event-single.php) goes to.
In my theme it goes to loop-single.php
What I ended up doing to track it down (because I don’t know much about how wordpress works) was write the file name on each theme file so I could see it if it showed in the browser (my site’s not live so I can do that).So for example, I changed
<?php /** * The loop that displays a single post. *to
This is loop-single.php!!!<?php /** * The loop that displays a single post. *That way I knew what php file was responsible for what.
And editing loop-single.php did the trick for me because I just wanted to add something BEFOREthe_content();on a single events list page.Wooohoo – resolved! And by a nooob too.
What I wanted was a way to say: this event is sticky (featured), stick it to the top of the events page above the search & list of other events.
But with the CUSTOM POST TYPE events posts being contained and controlled by a PAGE and not being a regular list of posts, showing a sticky post was proving to be a bit tricky.I used http://wordpress.org/extend/plugins/sticky-custom-post-types/
which, after adjusting the settings in SETTINGS > READING, adds a little “Stick this to the front page” box to your add/edit events post.THEN… after searching the net I added the following code (from here http://wordpress.stackexchange.com/questions/39483/broken-pagination) to the VERY TOP of wp-content/themes/twentyten/plugins/events-manager/templates/events-list.php
(You also have to tell events manager to ignore formats in events-manager-options#pages > Event List/Archives > Override with Formats? > NO… then it will go looking for the events-list.php page)
<?php //////////////////////////////////////////////////////////////////// START STICKY // 1st loop - index.php // Get IDs of sticky posts $sticky = get_option('sticky_posts'); // First loop to display only my single, most recent sticky post $most_recent_sticky_post = new WP_Query(array( // Only sticky posts 'post__in' => $sticky, // Treat them as sticky posts 'ignore_sticky_posts' => 1, // Order by ID 'orderby' => ID, // Get only the most recent 'posts_per_page' => 1 )); while ($most_recent_sticky_post->have_posts()) : $most_recent_sticky_post->the_post(); ?> <!-- loop code --> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endwhile; wp_reset_query(); /////////////////////////////////////////////////////////////////////////////// END STICKY ?>It’s very basic but it works. Just need to make it look pretty, add more than ONE sticky, add a slider, and more more more… but, still, I GOT A STICKY POST!
Don’t know – do you have the space/resources for a test site? That way you could try things out, problem solve, see if it the theme that is causing the problem.
I’ve got it in a page. Just went to add new page, and put in the shortcode: [event_form]
Works for me. I’m using latest version of wordpress & events manager, with twenty ten theme.So I figured it out myself. Don’t know if this is the correct/best way to do it but it works for me. NOTE: EVENTS MANAGER PLUGIN PEOPLE… it would be great if you could add this ‘how to’ to your documentation to help out other noobs who might be struggling like me – or if it IS there already, make it more obvious because I couldn’t find it. (But other than this issue I must say I am VERY HAPPY with your events plugin! Thank you.)
I copied the events-list.php from the plugin directory to my theme:
wp-content/themes/twentyten/plugins/events-manager/templates/events-list.phpand then I changed this line:
echo EM_Events::output( $args );to:
echo EM_Events::output(array('format'=> '<a href="#_EVENTURL" border=0>$mycustomphpstuffiwantedherethatdoesntshowifiuseformats</a> <B>#_EVENTLINK</B><br/>#_EVENTDATES #_EVENTTIMES<BR/><i>#_LOCATIONNAME, #_LOCATIONADDRESS, #_LOCATIONTOWN </i><br/><a href="#_EVENTURL">Details & map</a><HR>', 'limit'=>20, 'pagination'=>1));🙂
Forum: Fixing WordPress
In reply to: How do I make a "Blank"-page template…?Thanks JarretC (and Uffe for asking the question)
I’ve been looking for this for a while now. The blank template is the perfect solution for what I’m trying to do. THANK YOU!
🙂