lynk
Forum Replies Created
-
Forum: Plugins
In reply to: [WP FullCalendar] categoriesTry this with your category ID
[fullcalendar event-categories="4"]To hide the filter dropdowns on top, if you habe any, this works for me:
[fullcalendar event-categories="4" taxonomies="x"]The “x” can be replaced with anything which is not a real taxonomy.
- This reply was modified 9 years, 2 months ago by lynk. Reason: taxonomies parameter added
Forum: Plugins
In reply to: [WP FullCalendar] Please a hint for a little change on the pluginIt seems it calls
function wpfc_em_ajax()
in
wp-content/plugins/events-manager/em-wpfc.php:133Forum: Themes and Templates
In reply to: Removing Open Sans from Twenty Twelve ThemeForum: Fixing WordPress
In reply to: Why does WP image upload feature create only thumbnail?If you use “Send to editor” within the thumb menu, it’s inserted in the orgininal size (2.0.1)
Forum: Fixing WordPress
In reply to: Hard to explain, please read! :-)Why do you want to do that?
What do you want to achieve?Forum: Plugins
In reply to: Changing the way images are sent to the editorYou can do that with the WYSIWYG editor by clicking the image and clicking (text)align left/right
Forum: Plugins
In reply to: New plugin: VideoPopThere is a new version (1.2) of VideoPop available.
It is now possible to add a video with a URL, so no problems with upload/filesize restrictions anymore. Plus several fixes and additions, 2.0 compatible.
http://www.lynk.de/wordpress/videopop/Forum: Alpha/Beta/RC
In reply to: Image Placement in 2.0“Use Original” should really insert the original size.
The problem with the system right now is: How to know the original size of an image?
Yes, I can resize the inserted thumb, but unless its resized to its original dimensions it will not have the original visual quality.
And there is no way to find out the original dim. in WP.Forum: Fixing WordPress
In reply to: iTunes RSS tagsHave you tried this plugin?
http://garrickvanburen.com/wpipodcatter/Forum: Fixing WordPress
In reply to: Different side menus for different pagesIt is possible but requires PHP hacking in your template files.
Forum: Fixing WordPress
In reply to: adding javascript to wp_list_pagesAssign an id to the very first ul. The one before <?php wp_list_pages(); ?>, like <ul id=”mypages”>.
this css
#mypages li ul li {
display:none;
}should hide the sub-pages
Forum: Installing WordPress
In reply to: how to use querystring with permalinks ?you could work with POST instead of GET
Forum: Fixing WordPress
In reply to: PHP Questionsif the code above is the one you use, your need to close the image tag and close the “else {“.
[…]
<img src=”<?php bloginfo(‘stylesheet_directory’)>/images/author/author2title.jpg” />
<?php } ?>Forum: Plugins
In reply to: Add a few extra fields to write post page?you could use custom fields
http://codex.ww.wp.xz.cn/Using_Custom_Fieldsand then read out your data on your template pages described in the “Advanced Techniques for Custom Fields” section
Forum: Installing WordPress
In reply to: how to use querystring with permalinks ?try
m_ywebsite.org/index.php/2005/11/10/mypost/1/?Vote=26
add /1/ add the end for “page 1”. I have a script running like that with regular permalinks. might work for you as well.