Jindrak
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Disable new gallery and zoom at single product pagesI 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 tabreturn $tabs;
}
Forum: Plugins
In reply to: [WP Job Manager] Elements of Job Post expanding full-widthI’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/
Forum: Localhost Installs
In reply to: Installing a WP site to a local host from a downloaded backupThe 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?
Forum: Localhost Installs
In reply to: Installing a WP site to a local host from a downloaded backupIt’s the only one that I know of. Inside my WP Content Folder are two files called:
hastensdb-backup-core.sql
hastensdb-backup-plugins.sqlThey were generated by the wp2db (wordpress to drobbox) plugin.
Forum: Localhost Installs
In reply to: Installing a WP site to a local host from a downloaded backupCreated 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.
Forum: Localhost Installs
In reply to: Installing a WP site to a local host from a downloaded backupYes, but when I tried to import it, I got the following message:
Error
SQL query:— ——————————————————–
—
— Table structure for tablewp_commentmeta
—
CREATE TABLEwp_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
) ,
KEYcomment_id
(comment_id
) ,
KEYmeta_key
(meta_key
)
) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =1;MySQL said: Documentation
#1050 – Table ‘wp_commentmeta’ already exists
Forum: Plugins
In reply to: Wish List / Gift Registry for WordPress sitesI 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!