CreativeWP
Forum Replies Created
-
Got new errors:
Warning: mb_strtolower() [function.mb-strtolower]: Unknown encoding "" in /home/my website/public_html/wp-content/plugins/headspace2/modules/page/tags.php on line 136
I had to disable it, it was breaking my website both, front and back!
Forum: Plugins
In reply to: The problem when publish a postDid you get an answer?
Any one?
Forum: Fixing WordPress
In reply to: Taxonomies download PDF documentThis is what I meant:
I want to have two things to be filled as Taxonomy.
<conditional widget>
Name of Website:
Website address:
<conditional widget>This what I got, but I do not know how to add one without breaking both. I am able to add the website. But not the name. I would love to be able to do both. So that the name will show up and it will become a link with the website. I hope this is clear.
<?php if ( get_post_meta($post->ID, 'website') ) : ?> <div class="widget widget_text left first"> Website: <a href="<?php echo get_post_meta($post->ID, 'website', $single=true) ?>"></a> </div> <?php endif; ?>
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingWhen I save the carusel, I get 404 error searching for: /wp-content/plugins/wp-carousel/get_db.php 1001ms
What does that mean?
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingThe only thing I can think of, as to why the slider stopped working was because WordPress upgrade it its system, and this plugin is not longer compatible to WordPress 3.2.1. I have disable every pluggin, and this thing keeps buggy.
Has any one found a solution for this? Or a plugging similar to this one that works?
Thanks,
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingThanks for your help. Weird, but stepcarousel.js was not inside or included that folder. So if I chose this, nothing happens. I did follow the instructions to edit stepcarousel.js after I did upload it to the folder. If I choose to change from jcarousel to StepCarousel nothing happens either! ohy!
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingBasically, even if I want them to move manually adding the arrows, nothing happens.
Any one?
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingThanks, I did follow the instructions, the problem you mentioned was with another plugin, which is “Simple Cbox” the problem is that that is not the problem. I did de-activated EVERY plugin in this installation, and the problem continued. The only thing that changed was that I did a re-new installation of WordPress. From 3 to 3.2.1 that is all.
I would venture to say that it could be that updated WP and that is that this plugin is not ready for the newest WP?
It shows static. Nothing moves.
Forum: Plugins
In reply to: [WP Carousel] wp_carousel Not working – Not ScrollingI have the latest of everything, the last wordpress 3.1, plus the latest wp-carusel. The website is: https://comerciolatino.ca/
There is no javascript errors, or nothing, I did deactivated every pluggin, and still did not work. I am at a lost why the carusel is not working. Let me know,
Thanks,
Forum: Fixing WordPress
In reply to: User level categoriesI was told the code sniped that I am using should work with this format:
<?php global $current_user; get_currentuserinfo(); if ($current_user->user_level == 10 ) { ?> <a href="<?php echo CP_ADD_NEW_URL ?>" class="obtn btn_orange"><?php _e('Post an Ad', 'appthemes') ?></a> <?php } else { ?> <?php } ?>
So, I have to make it work between this two code snip.
<?php if(in_category( array( 5,10 ) ) { // if the current post is in categories 5 or 10 ?> <?php if ( !is_user_logged_in() ) { // check whether the user is logged in ?> <p>You'll need to be a member to view this content.</p> <?php } else { // user is logged in so go ahead and show content ?> <?php the_content(); ?> <?php } ?> <?php } ?>
Can any one help me?
Thanks,
Forum: Fixing WordPress
In reply to: User level categoriesMy theme does not have Category.php…. hmm.
Thanks,
Forum: Fixing WordPress
In reply to: User level categoriesAh, the categories are 10 and 5
Forum: Fixing WordPress
In reply to: User level categoriesWould this work? Where do I past it?
<?php if ( (!is_user_logged_in()) && in_category('10,5') ) { ?> You'll need to be a member to view this content. <?php } else { ?> <?php the_content(); ?> <?php } ?>
Forum: Fixing WordPress
In reply to: User level categoriesI should use something like this I do imagine:
<?php if ( is_user_logged_in() ) { ... } ?>