witi22
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: Embedded WordPress in WordPressForum: Plugins
In reply to: [Camera slideshow] [Plugin: Camera slideshow] Notices on activationSimply turn off your WP_DEBUG variable in your wp-config.php
Near line 83 :
define('WP_DEBUG', false);Forum: Fixing WordPress
In reply to: embed youtube videoThis is oEmbed functionnality.
Take a look HereHi,
If you manage to export your user list and parse it, something like this may work perfectly :
foreach($users as $user){ wp_insert_user( array ('user_login' => $user->login, 'user_password' => $user-password) ) ; }Take a look to :
for more informations.Forum: Fixing WordPress
In reply to: the_content() on external pages not workinghi,
just set a “-1” as numberposts
cheers
Forum: Fixing WordPress
In reply to: Wp display children instead of parent categoryBump ?
[please don’t bump – it’s not working]
Forum: Fixing WordPress
In reply to: Wp display children instead of parent categoryTy for that fast reply 🙂
unfortunately that won’t really solve my problem.
To the end i’d like to show a page content in parents categories, using plugin page2cat.
So i wont use the loop on those cats :sif(is_category() && !is_category('3') && $cat[0]->parent!=3){ // Show page content . // Working for others categories except 844 } else{ // use the loop }See what i want to do ? and why this let me perplex …
Viewing 7 replies - 1 through 7 (of 7 total)