WordPress help - Ask your questions

Status
Not open for further replies.
Hey OG EXE :)

I have a weird problem with a theme I'm using from studiopress, I update to the new genesis framework and also grabbed up the updated theme but my widget area home top #2 will not show anything from a text widget to a slide deck slider.

Any thoughts on what could cause this. I will give you admin access if you could help a brotha out :)

I have a feeling the problem is here:
Code:
 * This file handles the output on the homepage.
 */

add_action( 'genesis_after_header', 'enterprise_home_top_helper' );
/**
 * Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle.
 */
function enterprise_home_top_helper() {

    echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">';

    if ( is_active_sidebar( 'home-top-1' ) ) {
        echo '<div class="home-top-1">';
        dynamic_sidebar( 'home-top-1' );
        echo '</div><!-- end .home-top-1 -->';
    }
    echo '<div class="home-top-2">';
    if ( function_exists( 'wp_cycle' ) )
        wp_cycle();
    echo '</div><!-- end .home-top-2 -->';
    echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->';
 
Last edited:
Hey OriginalEXE,

Please look at the code at : http://pastebin.com/GVfatYeC (goes in Index.php and css)and http://pastebin.com/uynrvJfw (goes in functions.php)

These codes are of the featured post carousal or box.

I have to implement it on the theme shared here : http://www.blackhatworld.com/blackh...lean-responsive-wp-magazine-review-theme.html

It would be great if you can provide me with the customized css and function for the same.

Best regards,
SahL
That code should work in Gonzo theme too, there is nothing theme specific in it, all of that are WP functions included in WP installation.
 
Hey,

Is it possible to change the structure of the image link?
for ex : it it site.com/wp-upload/2012/07/img.jpg but i want site.com/wp-upload/images/img.jpg ..is this possible?
 
Is there any way to remove a malware from my Wordpress? I used a site scanner and a couple of pages of mine are infected. And i have tons of articles, i don't want to lose them =(
 
That code should work in Gonzo theme too, there is nothing theme specific in it, all of that are WP functions included in WP installation.

The code is working but the thumbnails are not of proper size :/ They are of very large size.

I used the regenerate thumbnail plugin, still its the same.
 
The code is working but the thumbnails are not of proper size :/ They are of very large size.

I used the regenerate thumbnail plugin, still its the same.

Add this to functions.php of your Gonzo theme:


PHP:
add_image_size('featuredposts-thumbnail', 200, 100, true);
Just replace 200 (width) and 100 (height) with numbers in pixels you need. Then, regenerate thumbnails again.
 
Hi! Thanks for this thread! Very generous!

I imagine this will be an easy one for you - But in my theme obviously when I post I have the option of leaving comments open or disabling comments. When I leave comments open, at the top of my post it says how many comments have been made BUT when I disable the comments on posts I don't want it to say at the top under my post title "Comments Disabled" like it does at the moment. I just want it to be blank. How do I remove the "comments disabled" text under the post title when I disable comments? Thanks a lot!

Hi sorry for the late reply! You asked for a pastebin link of my single.php file on the 13th page. Here it is.

Thanks so much for your time!

http://pastebin.com/ep3R1qT5
 
Hi originalexe, thanks for all the help you've been giving out, you are truly a generous person.

I have been using the beautiful 9gag clone you made, and just today the facebook share button no longer displays. It doesn't display on the demo site on originalexedotcom either. Is this because facebook released some sort of update or something? Sorry, i'm pretty much an absolute newbie to this.
 
Hi originalexe, thanks for all the help you've been giving out, you are truly a generous person.

I have been using the beautiful 9gag clone you made, and just today the facebook share button no longer displays. It doesn't display on the demo site on originalexedotcom either. Is this because facebook released some sort of update or something? Sorry, i'm pretty much an absolute newbie to this.
Hey, yeah Facebook deprecated it in favor of like button. I am really busy these days and my 9GAG theme sucks and needs big, huge update.

While you are waiting, to display like button, replace header.php content with this:
http://pastebin.com/Ri3riCMT
and content.php with this:
http://pastebin.com/3uW1Dzw2
 
Hi do I need to pay anything if I'm going to use a customized domain to my wordpress blog? I've heard about the registering and mapping stuff but I'm still confused.
 
Agreed! My wordpress sites look unprofessional. I need them to look waaaaay better. Hope you can help me with that!

Great thread mate, gonna bookmark as I know I will be asking few in the future. One question thou right, I am planning on doing some adsense sites, 5 to be exact. I am currently looking for reseller hosting for these sites. Of course they are gonna be wordpress sites. Was wondering if you had any suggestion on reseller web host beside hostgator?
 
Hi do I need to pay anything if I'm going to use a customized domain to my wordpress blog? I've heard about the registering and mapping stuff but I'm still confused.
If you are using wordpress.com, then you need to pay for their service to use domain. If you are downloading it from wordpress.org and using on your hosting, than you don't need to pay anything to wordpress.
 
Status
Not open for further replies.
Back
Top