hotwebideas
Forum Replies Created
-
Forum: Plugins
In reply to: Is there a plugin for a category menu as a widget?Nobody?
Forum: Plugins
In reply to: display a single random tag and a single random categoryHey, I just found this.
@pete: I added &orderby=name to my wp_tag_cloud(), so it would be <?php wp_tag_cloud(‘number=1&orderby=name&order=RAND’); ?>
Bruce
Forum: Themes and Templates
In reply to: Child Theme Not Working. What Am I Doing Wrong?Does anyone have an answer for this? Driving me crazy.
Forum: Themes and Templates
In reply to: Child Theme Not Working. What Am I Doing Wrong?Yes, activated through the network dashboard since this is a multisite. And also activated through the admin level as well.
Forum: Themes and Templates
In reply to: Do Child Themes Change the Parent or Are They Independent?Thanks, esmi, but I only have a style.css in the child and not a functions.php.
So, what you are saying is that if I change CSS in the child, the parent’s CSS gets changed as well?
Forum: Themes and Templates
In reply to: Problem with Themia Lite ThemeActually that is grossly unfair. Not only do all themes hosted on WPORG undergo a manual review (even for theme updates) but I downloaded the theme in question and it works just fine. The most likely cause for this was a corrupted download.
Sorry about that, Esmi. Take it back. ?? I never thought about interrupted downloads. Good to know in case this happens again.
Bruce
Yes, Esmi is right. Maybe creating a simple child theme would be better and leaving the original theme intact would be a better solution.
Bruce
Nimit, depending on your theme, go into your header.php file and edit it. Remove the function bloginfo(‘name’). just delete that code.
Then, in the same place in your header.php file, add a wordpress loop with WP_QUERY() or get_posts(), whichever you prefer and add your arguments. If you need more help creating the loops, search for this information in the WordPress codex function library.
Bruce
Forum: Themes and Templates
In reply to: Problem with Themia Lite ThemeInteresting. The developer did not test his work and now you are stuck with an error.
Not to worry. What I did when this happened to me was delete the directory for that theme in my wp-content/themes directory and as a default, the twentyeleven theme will become your new theme, which acts as a backup.
To delete the Themia Lite theme, you need FTP access.
I hope this helps,
BruceForum: Requests and Feedback
In reply to: Think I am done with Drupal.Hey Rev Voodoo, I never heard of SMF. Just out of curiosity, can you please send a link to it?
Forum: Plugins
In reply to: [Contact Form 7] Send button directs users to home page, regardless of errorsI have never seen that happen with Contact Form 7. Look at the HTML page source in your browser. Is there an action attribute in the form? It sounds like there is if your form is redirecting to your home page. As I understand, Contact Form 7 is all AJAX based, so nothing should be redirected to your home page.
One solution is to uninstall the plugin and reinstall the latest version.
Bruce
Forum: Your WordPress
In reply to: Using WordPress on Ecommerce Portal for Online StoresThanks, Drew. The shadows can be lighten, of course ?? I will also consider your suggestion about the menus.
Bruce
Forum: Meetups
In reply to: Wordcamp NYC?Thanks, Dion. I just found out about the Wordcamp now and did not see NYC in the upcoming list, LOL.
Bruce
Forum: Fixing WordPress
In reply to: Reading PostsHey Thuy, you mean, Bruce, not Brian. LOL
Glad it works. Can you please post your code here so I can look? When you say the style does not work, do you mean your CSS is not displaying? If so, are you calling the CSS file from the right place? Maybe you need to add <?php bloginfo(‘template_directory’);?> before your .CSS file from your <Link> tag.
Bruce
Forum: Themes and Templates
In reply to: [Twenty Twelve] Where is post type feedback ?Oh, I understand now. There is no special file for a custom post type since it is a post, so you would use content.php or even content-single.php if your theme has it.
To capture code for your feedback post type, use this code:
<?php $post_type = get_post_type( $post->ID ); if($post_type=="feedback") { /* Process the feed post type. */ } else { /* Process any OTHER post type. */ } ?>
I hope this helps,
Bruce