Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • I seem to be having trouble getting this to work for me. I’ve added the above code to my child theme functions.php, but I can’t seem to disable this %$^$#$$ gallery! I’ve successfully eliminated some unnecessary tabs by adding the following, but cannot get the gallery slider to go away. Basically, I want all the product gallery images to be displayed all at once. Thanks in advance.

    // add_filter( ‘woocommerce_product_tabs’, ‘bbloomer_remove_product_tabs’, 98 );

    add_action( ‘woocommerce_after_single_product_summary’, ‘comments_template’, 50 );

    add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );

    function woo_remove_product_tabs( $tabs ) {

    // unset( $tabs[‘description’] ); // Remove the description tab
    unset( $tabs[‘reviews’] ); // Remove the reviews tab
    unset( $tabs[‘additional_information’] ); // Remove the additional information tab

    return $tabs;

    }

    Thread Starter Jindrak

    (@jindrak)

    I’ve also recreated the same exact job post but from the front end so you can see how they are displaying differently. You can see both job postings at etherstrategy.com/careers/

    Thread Starter Jindrak

    (@jindrak)

    The server where the site was installed no longer has cpanel or phpmyadmin access, so I can’t go export the database. I was, however, still able to log into the server via FTP and copy the entire website folder contents. I don’t know if that will help though?

    Thread Starter Jindrak

    (@jindrak)

    It’s the only one that I know of. Inside my WP Content Folder are two files called:
    hastensdb-backup-core.sql
    hastensdb-backup-plugins.sql

    They were generated by the wp2db (wordpress to drobbox) plugin.

    Thread Starter Jindrak

    (@jindrak)

    Created a new empty db in MAMP with a different name, and then tried to import the backup .sql and got the same message as above.

    Thread Starter Jindrak

    (@jindrak)

    Yes, but when I tried to import it, I got the following message:

    Error
    SQL query:

    — ——————————————————–

    — Table structure for table wp_commentmeta

    CREATE TABLE wp_commentmeta (

    meta_id BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
    comment_id BIGINT( 20 ) UNSIGNED NOT NULL DEFAULT ‘0’,
    meta_key VARCHAR( 255 ) DEFAULT NULL ,
    meta_value LONGTEXT,
    PRIMARY KEY ( meta_id ) ,
    KEY comment_id ( comment_id ) ,
    KEY meta_key ( meta_key )
    ) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =1;

    MySQL said: Documentation

    #1050 – Table ‘wp_commentmeta’ already exists

    I currently have a gift registry plugin under development. Unfortunately, it has taken a back seat to other projects, but it should be available sometime in the first quarter of 2012. Will keep the forum posted. Happy New Year!

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