Forum Replies Created

Viewing 15 replies - 46 through 60 (of 73 total)
  • Thread Starter patjk

    (@patjk)

    Sorry about that, and thanks for the quick reply.

    ### WordPress Environment ###
    
    Home URL: https://www.easyupc.com
    Site URL: https://www.easyupc.com
    WC Version: 2.5.5
    Log Directory Writable: ?
    WP Version: 4.5.2
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    Language: en_US
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 5.6.18
    PHP Post Max Size: 8 MB
    PHP Time Limit: 120
    PHP Max Input Vars: 1000
    SUHOSIN Installed: –
    MySQL Version: 5.6.30
    Max Upload Size: 8 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 2.5.5
    :
    woocommerce_sessions: ?
    woocommerce_api_keys: ?
    woocommerce_attribute_taxonomies: ?
    woocommerce_termmeta: ?
    woocommerce_downloadable_product_permissions: ?
    woocommerce_order_items: ?
    woocommerce_order_itemmeta: ?
    woocommerce_tax_rates: ?
    woocommerce_tax_rate_locations: ?
    
    ### Active Plugins (23) ###
    
    License-Manager: by Isaac Oyelowo – 4.8
    Affiliates Pro: by itthinx – 2.15.0
    Affiliates WooCommerce Integration: by itthinx – 1.4.1
    CloudFlare: by Ian Pye
    Jerome Chen
    James Greene
    Simon Moore
    David Fritsch (CloudFlare Team) – 1.3.18
    
    Contact Form 7: by Takayuki Miyoshi – 4.4.2
    Custom CSS Manager: by MyWebsiteAdvisor – 1.5.2
    Easy Table: by Takien – 1.6
    Google AdWords Remarketing: by Audrius Dobilinskas – 1.0
    Google Analytics by Yoast: by Team Yoast – 5.0.6
    PixelYourSite: by PixelYourSite – 2.2.4
    Postman SMTP: by Jason Hendriks – 1.7.2
    Really Simple CAPTCHA: by Takayuki Miyoshi – 1.8.0.1
    Responsive Add Ons: by CyberChimps – 1.0.6
    Symple Shortcodes: by AJ Clarke – 1.6
    WooCommerce Dynamic Pricing & Discounts: by RightPress – 1.1
    WooCommerce Email Test: by RaiserWeb – 1.5
    WooCommerce Stripe Gateway: by Automattic – 3.0.1
    WooCommerce AdWords Conversion Tracking: by Wolf+B?r GmbH – 1.3.1
    WooCommerce Google Analytics Integration: by WooThemes – 1.4.0
    WooCommerce: by WooThemes – 2.5.5
    WooThemes Helper: by WooThemes – 1.6.2
    Yoast SEO: by Team Yoast – 3.2.5
    WP Force SSL: by Kostas Vrouvas – 1.2.1
    
    ### Settings ###
    
    Force SSL: ?
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    
    ### API ###
    
    API Enabled: ?
    API Version: 3.1.0
    
    ### WC Pages ###
    
    Shop Base: #181 - /shop/
    Cart: #182 - /cart/
    Checkout: #183 - /checkout/
    My Account: #184 - /my-account/
    
    ### Taxonomies ###
    
    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    ### Theme ###
    
    Name: Responsive Child
    Version: 1.0.0
    Author URL:
    Child Theme: ?
    Parent Theme Name: Responsive
    Parent Theme Version: 1.9.8.2 – 1.9.8.4 is available
    Parent Theme Author URL: https://cyberchimps.com
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: responsive-child/woocommerce/checkout/thankyou.php
    responsive-child/woocommerce/emails/admin-new-order.php
    responsive-child/woocommerce/emails/customer-processing-order.php
    Thread Starter patjk

    (@patjk)

    I want to modify the layout of some fields to see if it affects the CV. I also want to change the top banner, the color of some buttons, and maybe try to test it without the menu. Basically a bunch of stuff to improve the conversion rate.

    Thread Starter patjk

    (@patjk)

    How exactly would I go about that?

    Right now my checkout page is at /checkout, page ID 183.

    How do I duplicate the [woocommerce_checkout] page to make modifications for a second variation?

    Thanks.

    @hmchristine – I had the same issue as you, and per the link you posted I added the following to my functions.php (in the child theme) and it solved the issue, thanks.

    /*** Remove Query String from Static Resources ***/
    function remove_cssjs_ver( $src ) {
     if( strpos( $src, '?ver=' ) )
     $src = remove_query_arg( 'ver', $src );
     return $src;
    }
    add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
    add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
    Thread Starter patjk

    (@patjk)

    I’ve tried this in the functions.php of my Child theme with no luck again:

    add_filter('tc_logo_src', 'my_logo');
    function my_logo($original){
    	if (is_page(182) )
    		return esc_url( 'https://gomaincom/checkout/wp-content/uploads/2015/07/cropped-domain-checkoutheader1.jpg');
    	else return $original;
    }

    Any ideas why this isn’t working? I’m pretty certain the page ID is correct. Thanks.

    Thread Starter patjk

    (@patjk)

    I seemed to figure out #2 with this:

    .woocommerce-page .main-nav {
    display:none;
    }

    Though I am wondering why the .page-id-xxx method didn’t work above.

    I will try your recommendation for #1 and report back.

    Thanks.

    Thread Starter patjk

    (@patjk)

    Thanks for those links and your time.
    1) I will try this, but see 2 (I think I should resolve it first).
    2) I’ve tried the code before and it didn’t seem to work. I have checked the page id and updated the code accordingly. I’m using the Custom CSS Manager, which has worked well for other stuff. I want to hide the menu on the Cart and Checkout pages (Woocommerce pages), which are IDs 182 and 183 respectively. Any ideas why this code wouldn’t work?

    .page-id-183 .main-navigation{
        display:none;
    }
    .page-id-182 .main-navigation{
        display:none;
    }

    Thread Starter patjk

    (@patjk)

    Hello, I’d prefer to keep the site anonymous if possible. It is using the responsive theme with no customizations really.

    Thread Starter patjk

    (@patjk)

    I’d appreciate any advice anyone may have. I’ve found many other threads with this error, but none showing how to get around the rewrite rules I have in place.

    Thanks.

    Thread Starter patjk

    (@patjk)

    Bump, anyone?

    Thread Starter patjk

    (@patjk)

    Issue has been resolved. When you move a site to a new directory, and if it goes to a different domain, even if on the same server, make sure you backup the db first, create a new db, move the files, then import the data into the new db and update wp-config.

    I originally moved the files and updated the options, and it mostly worked well, but then caused small issue after small issue. Specifically, my user profile got corrupted. Doing the above solved the issue.

    Did you ever find a solution? I’m still looking to create a link with quantity. Right now I use:
    https://domain.com/checkout/?post_type=product&add-to-cart=9

    But I want to have that link add quantity 5 of product 9. Can I do that within the link?

    Thanks.

    It doesn’t work with 3.8. Getting the “page not found” when trying to Add a download.

    I just downloaded and installed the latest version, and I’m having this issue. Any tips? Thanks.

    Thread Starter patjk

    (@patjk)

    Solved. The .jar file needed to be uploaded via WordPress and used the full path to it instead of file.jar in the applet.

Viewing 15 replies - 46 through 60 (of 73 total)