Bloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove header image from templateOk. So you will need to look around in your theme files to see where it loads the header image. Look in the header.php file first. It might be a template page. Then you can use is_page( ‘example’ ) to load the image if it is not this page or ! in_category( array( )) https://codex.wordpress.org/Conditional_Tags
Forum: Fixing WordPress
In reply to: WP-login admin info retrievalYou can try this. Download wp-config.php and look at the settings to see the database info. Log in to your hosting account. Use a tool like PHPMyAdmin and edit the database. Look in the “options” table and find the email address. Look in the users table to find the user name.
Forum: Fixing WordPress
In reply to: WP-login admin info retrievalDo you have FTP access?
Forum: Fixing WordPress
In reply to: Remove header image from templateIn your CSS put:
.header-img {
display: none;
}You want to create a child theme. Then edit the CSS in the child theme for background and add opacity:
Forum: Fixing WordPress
In reply to: Extend My Menu Colors Across PageI recommend you contact the developer of your theme.
Forum: Fixing WordPress
In reply to: WPTouch Mobile plugin: Tablet views for my site is awfulPost here to get help https://wordpress.org/support/plugin/wptouch
Forum: Plugins
In reply to: [WP eCommerce] How to customize the showcategories shortcodeI was able find a temprary fix. Its not ideal because I had to change the core code. Hopefully in the future the developers of WPEC can add parameters to [showcategories] shortcode to be like [showcategories =1,2,3]
I changed the file called \wpsc-components\theme-engine-v1\helpers\product.php around line 357
$category_data = get_terms('wpsc_product_category','exclude=100,101&hide_empty=0&parent='.$category_id, OBJECT, 'display'); $output ='';Forum: Plugins
In reply to: [WP eCommerce] Customisation of the Thank you pageIt would be on the wpsc-transaction_results.php
Forum: Plugins
In reply to: [WP eCommerce] Auth.Net 2.0 not giving specific errorsIf you log into your account you will be able to download it.
Forum: Plugins
In reply to: [WP eCommerce] WP e-commerce checkout problems / SSL?Can you check out in test mode? In stores setting under checkout, security and encryption. Do you have “Force users to use SSL Encryption” checked?
Forum: Plugins
In reply to: [WP eCommerce] Add a form to accept credit cards as the only payment method?https://wordpress.org/plugins/wp-e-commerce/faq/ Lists the gateways.
Forum: Plugins
In reply to: [WP eCommerce] List products in alphabetical orderIn store settings under the presentation allows you to set the order of products.
Forum: Plugins
In reply to: [WP eCommerce] Oops, there is nothing in your cart.Check the database for errors and repair the tables.
Forum: Plugins
In reply to: [WP eCommerce] Add To Cart button issues – HELPThere maybe a jQuery conflict. Have you tried deactivating all plugins that did not come with the theme? I tried to clear the cart and that would not work. Also on the single product page clicking add to cart it would just spin.