muaythai
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Illustratr] How to center single portfolio page imagesThanks James!
Forum: Themes and Templates
In reply to: [Hamilton] Force fixed width of image on posts?That worked! Thanks Anders. Great theme.
Forum: Themes and Templates
In reply to: [Hamilton] How to make .pageheader static and not fade out?Thanks Jarret! It worked.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] How to paginate fse_print_events_list?Fantastic! Works and looks great- and on the widget too! Check it out: http://www.grupoquepasa.com
Thanks for hooking it up faebu!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] How to paginate fse_print_events_list?Terrific faebu! I can’t wait to test it out. Thanks!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] How to paginate fse_print_events_list?Anybody? I found this but it’s a little above my skill level. This is easily the best events calendar plug-in I’ve used- I just need to get some paging going! Any help greatly appreciated.
Set the URL in Event Page/Single view page. You can choose your desired page via the dropdown.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Event List Page Is EmptyI’m was having the same problem. The fix for me was deactivated the WPML multilingual plug-in. I’d love to know how to make them both work at the same time though 😉
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Upcoming/past events list not showingI had the same issue and it turns out the conflict was with the WPML Multilingual CMS plug-in. I’m in a bit of a pickle here because my site is bilingual so I need the WPML on, but there are so many events in my calendar I need to use the event list view.
Any suggestions?
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Venue not showing in widgetCool- those files fixed my issue- thanks!
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Venue not showing in widgetHmmm, my widget only displays:
Date
Name of event
More InfoNo matter what I set the widget display settings, I always get the above. What gives?
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Venue not showing in widgetI have the same issue- what’s the solutions?
Forum: Fixing WordPress
In reply to: [Plugin: List category posts] Images showing in list category postsI’m trying to do the exact same thing- show thumbs for the list that LCP generates. Anybody?
Forum: Fixing WordPress
In reply to: advanced-cache.php file disappearsDid anybody find a fix for this? I’m having the exact same issue.
Forum: Fixing WordPress
In reply to: Way to strip HTML from the_content ?I used:
<?php ob_start(); the_content(''.__('Read more <span class="meta-nav">»</span>', 'sandbox').''); $old_content = ob_get_clean(); $new_content = strip_tags($old_content); echo $new_content; ?>without get_the content() and it worked just fine except all the HTML was stripped out of the post- even linebreaks and a drop-cap created in my stylesheet. Basically turned all posts into giant blocks of text with no style, even from my CSS.
Is there any way to strip out HTML formatting only from text that’s been input via the Dashboard editor? I basically want users to not be allowed to use HTML in their posts.