Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter Rachit Singh

    (@rachit-singh)

    Thanks for your kind words.. I will do this tonight

    Thread Starter Rachit Singh

    (@rachit-singh)

    I don’t have so much ample time to do all this stuff. All I Know is site was working well before and whatever happened, after plugin installation.
    So, better I install it on another to site and sell themes there

    Thread Starter Rachit Singh

    (@rachit-singh)

    I am sorry to say I will move to another plugin if the speed remains affected for some days and the issue isn’t resolved.

    Thread Starter Rachit Singh

    (@rachit-singh)

    ### Begin System Info ###

    — Site Info

    Site URL: https://www.hacknovations.org
    Home URL: https://www.hacknovations.org
    Multisite: No

    — Hosting Provider

    Host: iPage

    — User Browser

    Platform: Windows
    Browser Name: Firefox
    Browser Version: 38.0
    User Agent String: Mozilla/5.0 (Windows NT 6.3; WOW
    64; rv:38.0) Gecko/20100101 Fire
    fox/38.0

    — WordPress Configuration

    Version: 4.2.2
    Language: en_US
    Permalink Structure: /%postname%/
    Active Theme: Prose 1.5.2
    Show On Front: posts
    Remote Post: wp_remote_post() works
    Table Prefix: Length: 8 Status: Acceptable
    Admin AJAX: Accessible
    WP_DEBUG: Disabled
    Memory Limit: 40M
    Registered Post Stati: publish, future, draft, pending, private, trash, auto-draft, inherit, refunded, failed, revoked, abandoned, active, inactive

    — EDD Configuration

    Version: 2.3.8
    Upgraded From: 2.3.2
    Test Mode: Disabled
    Ajax: Enabled
    Guest Checkout: Enabled
    Symlinks: Disabled
    Download Method: Direct
    Currency Code: USD
    Currency Position: before
    Decimal Separator: .
    Thousands Separator: ,
    Upgrades Completed: upgrade_payment_taxes,upgrade_customer_payments_association

    — EDD Page Configuration

    Checkout: Valid
    Checkout Page: https://www.hacknovations.org/hacknovations-checkout-page/
    Success Page: https://www.hacknovations.org/transaction-successful-cheers/
    Failure Page: https://www.hacknovations.org/transaction-failed/
    Downloads Slug: /downloads

    — EDD Gateway Configuration

    Enabled Gateways: PayPal Standard
    Default Gateway: PayPal Standard

    — EDD Tax Configuration

    Taxes: Disabled
    Tax Rate: 0
    Display On Checkout: Not Displayed
    Prices Include Tax: No

    — Must-Use Plugins

    — WordPress Active Plugins

    404 to Start: 1.5.9
    Affiliate Link Manager: 2.1
    Akismet: 3.1.1
    Async JS and CSS: 1.7.13
    CommentLuv: 2.94
    Comment Redirect by Yoast: 1.1.3
    Dequeue Font Awesome: 1.1
    Easy Digital Downloads: 2.3.8
    Floating Social Bar: 1.1.7
    Force Regenerate Thumbnails: 2.0.5
    Genesis Simple Edits: 2.1.1
    Google Analytics by Yoast: 5.4.2
    GZip Ninja Speed Compression: 1.2.3
    JavaScript to Footer: 0.4.1
    JP Widget Visibility: 3.5.3
    Leverage Browser Caching Ninja: 2.1
    MyCommentAuthors: 1.4
    Rel Nofollow Checkbox: 1.1.4
    Remove Widget Titles: 1.0
    Rocket Lazy Load: 1.0.4
    Simple Alexa Traffic Widget: 1.0
    Simple Social Icons: 1.0.8
    Speed Booster Pack: 2.7
    Use Google Libraries: 1.6.2.1
    W3 Total Cache: 0.9.4.1
    Wordpress Ad Widget: 2.8.2
    WordPress SEO: 2.1.1
    WP-Optimize: 1.8.9.10
    WP CleanFix: 4.0.0
    WP Database Backup: 2.3
    WPDBSpringClean: 1.6
    WP Hide Post: 1.1.9
    WP Media Cleaner: 2.4.2
    WP Smush: 2.0.6.1
    WP Super Minify: 1.3.1
    wpXtreme: 1.5.2

    — WordPress Inactive Plugins

    — Webserver Configuration

    PHP Version: 5.3.13
    MySQL Version: 5.5.36
    Webserver Info: Apache/2

    — PHP Configuration

    Safe Mode: Disabled
    Memory Limit: 256M
    Upload Max Size: 20M
    Post Max Size: 20M
    Upload Max Filesize: 20M
    Time Limit: 120
    Max Input Vars: 1000
    Display Errors: On (1)

    — PHP Extensions

    cURL: Supported
    fsockopen: Supported
    SOAP Client: Not Installed
    Suhosin: Not Installed

    — Session Configuration

    EDD Use Sessions: Enabled
    Session: Enabled
    Session Name: PHPSESSID
    Cookie Path: /
    Save Path: /home/users/web/b769/ipg.hackcom/cgi-bin/tmp
    Use Cookies: On
    Use Only Cookies: On

    ### End System Info ###

    Thread Starter Rachit Singh

    (@rachit-singh)

    Hi
    Try this, refresh your cache ( if you are using a cache plugin ) and purge your cache ( if you use a CDN )
    Build your thumbnails using force regenerate thumbnails and change theme to twenty thirteen, reply if problem still continues ..

    Thread Starter Rachit Singh

    (@rachit-singh)

    I removed the what next and related, still same issue

    Thread Starter Rachit Singh

    (@rachit-singh)

    How to remove, it is in theme template…
    here it is
    <?php
    // Start the engine
    require_once(TEMPLATEPATH.’/lib/init.php’);

    // Add new image sizes
    genesis_add_image_size(‘Dynamic Content Gallery’, 610, 225, TRUE);

    // Force layout on homepage
    add_filter(‘genesis_options’, ‘corporate_home_layout’, 10, 2);
    function corporate_home_layout($options, $setting) {
    if($setting == GENESIS_SETTINGS_FIELD) {
    if(is_home())
    $options[‘site_layout’] = ‘content-sidebar’;
    }
    return $options;
    }

    // Replaces homepage sidebar with Sidebar Home in widget area
    add_action(‘genesis_after_content’, ‘get_custom_sidebar’, 5);
    function get_custom_sidebar() {
    if( is_home() ) {
    remove_action(‘genesis_after_content’, ‘genesis_get_sidebar’);
    get_sidebar(‘home’);
    }
    }

    // Register widget areas
    genesis_register_sidebar(array(
    ‘name’=>’Sidebar Home’,
    ‘description’ => ‘This is the right sidebar on the homepage.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Featured Top Left’,
    ‘description’ => ‘This is the featured top left column of the homepage.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Featured Top Right’,
    ‘description’ => ‘This is the featured top right column of the homepage.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Featured Bottom’,
    ‘description’ => ‘This is the featured bottom section of the homepage.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    ?><?php
    // Start the engine
    require_once(TEMPLATEPATH.’/lib/init.php’);

    // Add new image sizes
    genesis_add_image_size(‘Sidebar #1’, 270, 150, TRUE);
    genesis_add_image_size(‘Sidebar #2’, 90, 90, TRUE);

    // Add widgeted footer section
    add_action(‘genesis_before_footer’, ‘platinum_include_footer_widgets’);
    function platinum_include_footer_widgets() {
    require(CHILD_DIR.’/footer-widgeted.php’);
    }

    // Force layout on homepage
    add_filter(‘genesis_options’, ‘platinum_home_layout’, 10, 2);
    function platinum_home_layout($options, $setting) {
    if($setting == GENESIS_SETTINGS_FIELD) {
    if(is_home())
    $options[‘site_layout’] = ‘content-sidebar’;
    }
    return $options;
    }

    // Register sidebars
    genesis_register_sidebar(array(
    ‘name’=>’Homepage’,
    ‘description’ => ‘This is the featured column of the homepage.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Footer #1’,
    ‘description’ => ‘This is the first column of the footer section.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Footer #2’,
    ‘description’ => ‘This is the second column of the footer section.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Footer #3’,
    ‘description’ => ‘This is the third column of the footer section.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    genesis_register_sidebar(array(
    ‘name’=>’Footer #4’,
    ‘description’ => ‘This is the fourth column of the footer section.’,
    ‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
    ));
    // Create shortcode for Post Info sharing icons
    function post_share_shortcode() {
    if (!is_page()) {
    $permalink = get_permalink();
    $datatext = get_the_title();
    $share_buttons = ‘
    <div class=”twitter-share-button”>
    <a href=”https://twitter.com/share&#8221; class=”twitter-share-button”
    data-url=”‘.$permalink.'” data-text=”‘.$datatext.'”>Tweet
    </div>
    ‘;
    return $share_buttons;
    }}
    add_shortcode(‘post_share’, ‘post_share_shortcode’);
    /** Display related posts in Genesis based on Category */
    function related_posts_categories() {
    if ( is_single ( ) ) {
    global $post;
    $count = 0;
    $postIDs = array( $post->ID );
    $related = ”;
    $cats = wp_get_post_categories( $post->ID );
    $catIDs = array( );{
    foreach ( $cats as $cat ) {
    $catIDs[] = $cat;
    }
    $args = array(
    ‘category__in’ => $catIDs,
    ‘post__not_in’ => $postIDs,
    ‘showposts’ => 5,
    ‘ignore_sticky_posts’ => 1,
    ‘orderby’ => ‘rand’,
    ‘tax_query’ => array(
    array(
    ‘taxonomy’ => ‘post_format’,
    ‘field’ => ‘slug’,
    ‘terms’ => array(
    ‘post-format-link’,
    ‘post-format-status’,
    ‘post-format-aside’,
    ‘post-format-quote’ ),
    ‘operator’ => ‘NOT IN’
    )
    )
    );
    $cat_query = new WP_Query( $args );
    if ( $cat_query->have_posts() ) {
    while ( $cat_query->have_posts() ) {
    $cat_query->the_post();
    $related .= ‘

    • ‘ . get_the_title() . ‘
    • ‘;
      }
      }
      }
      if ( $related ) {
      printf( ‘<div id=”content” class=”after-post”><div class=”related”><b>Related Posts</b>

      %s

    </div>’, $related );
    }
    wp_reset_query();
    }
    }
    add_action( ‘genesis_before_comments’, ‘related_posts_categories’, 9);
    /** Add Social Media Icons on Single Posts **/
    add_action( ‘genesis_before_comments’, ‘child_social_media_icons’, 9);
    function child_social_media_icons() {
    if ( is_single() ) { ?>
    </div>
    <?php } }
    /** Add Genesis Box on Single Posts **/
    add_action(‘genesis_before_comments’, ‘include_genesis_box’, 10);
    function include_genesis_box() {
    if ( is_single() )
    require(CHILD_DIR.’/genesis-box.php’);
    }
    ?>

    Thread Starter Rachit Singh

    (@rachit-singh)

    Thanks for replying, I really wanted help badly, I actually want to use a single sidebar, but my theme has two sidebars, one for posts and one for home page.
    Can you tell me, how to fix the problem ? I don’t know much of CSS

    Thread Starter Rachit Singh

    (@rachit-singh)

    Although your hack worked but I am still not able to understand your advice, i am newbie can u elaborate it a bit

    Thread Starter Rachit Singh

    (@rachit-singh)

    I Just Forgot to mention my Blog
    https://hacknovations.org

    Go to Your Youtube Video Under share tab Locate Embed Copy the Code paste It in Your post Html.

    Thread Starter Rachit Singh

    (@rachit-singh)

    Thanks For Your time and Patience It worked !
    Thanks a lot !

    Thread Starter Rachit Singh

    (@rachit-singh)

    Thanks It WOrked.
    One last question
    I want to have main content width 532 and sidebar as it is..
    Can you help

    Thread Starter Rachit Singh

    (@rachit-singh)

    First Thanks for you time and patience.
    There is something very strange You told me you can see Final words in Bold. Whereas I am not seeing it as Bold I am using Mozilla Firefox on p4 computer with 2Gb Ram and 500GB Is the Issue about PC?
    Well Can you guide me I am doing well in Blogging or not

Viewing 14 replies - 1 through 14 (of 14 total)