Piotr Sochalewski
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Mystique Theme HelpOrginal phrase ‘Home’ to ‘Blog’. You can find it easily by Ctrl+F in PoEdit. Then save and upload.
Forum: Themes and Templates
In reply to: Mystique Theme HelpEdit en_US.po in /mystique/lang by PoEdit.
Forum: Fixing WordPress
In reply to: Anyone know how to get the Tag Cloud to move/float?Install WP-Cumulus or WP-Cirrus. Remember that first one requires Flash.
Forum: Fixing WordPress
In reply to: center an embedded movie on a pageGo to HTML editor and tag your embed code like here
<div style="text-align: center;"> == EMBED CODE == </div>"Forum: Fixing WordPress
In reply to: How to deactivate tag ?Specifically sidebar.php. 🙂
Try to change CHMOD for /wp-content and /themes to 755.
Forum: Fixing WordPress
In reply to: Exclude code from one postTry this.
if (is_single('294')==false) { adsense code }Forum: Themes and Templates
In reply to: Display a 2 words blog title with 2 formatsYou should open header.php in theme path and go to 63 line. Then change
<?php bloginfo( 'title' ); ?>to what you want.Forum: Fixing WordPress
In reply to: permanentlink for page not for articleYou can’t use different permanent link types for different posts/pages. In addition you can’t use e.g /, [, ], ” in URI.
But you can change it for all in wp-admin/options-permalink.php to e.g.
%category%/%postname%/.Forum: Fixing WordPress
In reply to: How to get the cat id of a custom post type?It works on post (single), because posts have category in contrast to pages.
Forum: Fixing WordPress
In reply to: Submenu items in the Menu Builder?In WP menu builder are submenus. 🙂 Just drag’n’drop an item to right.
Like here: http://i36.tinypic.com/34jf7d2.jpg
Forum: Everything else WordPress
In reply to: SVN: how to restart?Fortunately yes. And I did it – it was for me extremely hard, but I created working copy with .svn, so there is no more problem with commiting changes from shell.
Forum: Hacks
In reply to: If single/categoryUnfortunely it doesn’t work, but with a loop is great. 😉 Thank you! 🙂
$exclude_array = explode(",", $settings['excl_post']); for ( $i = 0; $i < count($exclude_array); $i++ ) { if(is_single($exclude_array[$i])==true) {...} }But I have one more question. Is it possible to use any conditional tag to check if element is in specific class or id (like
div id="sidebar")?Forum: Plugins
In reply to: HTML in post titleSolved. This code should be added in functions.php.
add_filter( 'wp_title', 'custom_title', 1 ); function custom_title( $title = '') { $title = strip_tags($title); return $title; }Forum: Plugins
In reply to: [Plugin: WP Facebook Like] Some thoughts on this pluginHow to disable it for pages, because I just don’t need it on them?