Tips and Tricks HQ Support

Support site for Tips and Tricks HQ premium products

  • Home
  • Contact Us
  • Documentation
  • Forum Home
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
You are here: Home

Peter

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 226 through 240 (of 3,409 total)
← 1 2 3 … 15 16 17 … 226 227 228 →
  • Author
    Posts
  • August 12, 2017 at 11:46 pm in reply to: Photo Seller – Lightbox appears under theme menu bar #72828
    Peter
    Member

    Go and grab the following plugin:

    http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413

    and try again.

    August 11, 2017 at 11:11 pm in reply to: Photo Seller – Lightbox appears under theme menu bar #72826
    Peter
    Member

    The following custom CSS should fix it:

    .fancybox-overlay{
    z-index: 9999;
    }

    You can try putting the above in your theme’s custom CSS section. If that doesn’t work let me know.

    August 11, 2017 at 5:16 am in reply to: Add space(s) between image description and pricelist #76206
    Peter
    Member

    1) Go and grab the following plugin:

    http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413

    2) Then add the following CSS code in the settings of the above plugin:

    .wps-pricing-tables h4{
    padding: 10px 0px;
    }

    August 10, 2017 at 4:23 am in reply to: Additional shortcodes for WP Photo Seller #76195
    Peter
    Member

    These are the available tags:

    {first_name} – First name of the buyer
    {last_name} – Last name of the buyer
    {payer_email}- Buyer email address
    {product_details} – Lists the item name (with variation), quantity, currency and price of every purchased item.
    {product_name} – Name of the purchased products (comma separated)
    {product_link_digital_items_only} – List of purchased digital items with encrypted download links (The item is only listed if the product has a downloadable file)
    {shipping_info} – Buyer’s shipping address
    {product_specific_instructions} – Add the product specific instructions (e.g password for a PDF file) specified in the product to the email body.
    {purchase_date} – The date of the purchase.
    {transaction_id} – The unique transaction ID of the purchase.
    {order_id} - The ID of the order as shown in the Orders menu
    {purchase_amt} – The amount paid for the current transaction.
    {discount_amt} – The amount of discount given.
    {total_tax} – Total tax amount for this transaction.
    {total_shipping} – Total shipping amount for this transaction.
    {total_minus_total_tax} – The total amount minus the total tax.
    {product_receipt_digital_items_only} –display receipt link
    {customer_comment} – buyer comment

    August 9, 2017 at 11:03 pm in reply to: Selling all images in a gallery #71761
    Peter
    Member

    Ok thanks.

    I think I will need take a closer look at your site.

    I’ll send you an email.

    August 9, 2017 at 2:19 pm in reply to: Selling all images in a gallery #71759
    Peter
    Member

    Hi again,

    I think your issue might be that you have entered an incorrect value for the photo size ratio. Value must be between 0 and 1.

    You have to enter 1 instead of 100.

    Can you please change that value?

    August 9, 2017 at 12:49 am in reply to: Selling all images in a gallery #71757
    Peter
    Member

    I don’t see any issues.

    Maybe you are seeing browser caching.

    Can you please provide the link to your front end gallery page so I can see if the same price is displayed for me?

    August 9, 2017 at 12:38 am in reply to: Selling all images in a gallery #71756
    Peter
    Member

    Ok thanks for the info.

    I will do some tests and see if there is a bug and let you know.

    August 5, 2017 at 11:16 pm in reply to: Add Additional Content To Photo Details Page #75975
    Peter
    Member

    OK I know what you mean now.

    You can also insert the following code too:

    .wps-photo-description-text{
    display: none;
    }

    If you want the h2 heading description displayed, you can delete the first bit of code I sent you.

    August 5, 2017 at 12:15 am in reply to: Add Additional Content To Photo Details Page #75972
    Peter
    Member

    You can use any custom CSS plugin. Eg

    http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413

    August 3, 2017 at 5:53 am in reply to: Photo Seller – Enable Instore Pickup option not showing up #76134
    Peter
    Member

    @visual1bc

    I have sent you an email.

    August 3, 2017 at 5:25 am in reply to: Photo Seller – Enable Instore Pickup option not showing up #76133
    Peter
    Member

    I think you may have found a little bug.

    I will investigate and apply a fix and let you know.

    August 3, 2017 at 5:10 am in reply to: Add Additional Content To Photo Details Page #75970
    Peter
    Member

    Yes we have a filter you can use to change the wording of:

    “To buy this photo choose from the selections below”

    Simply use the appropriate filter in your theme’s functions.php file.

    Here’s an example:

    add_filter( 'wpps_filter_pricing_table_heading', 'change_pricing_table_heading', 10, 1 );
    function change_pricing_table_heading( $pricing_heading ) {
    $pricing_heading = 'Choose printing options from the list below:';
    return $pricing_heading;
    }

    Regarding the photo name on the details page – you could use some simple CSS code to hide it.

    Eg:

    .wps-digital-details h2{
    display: none;
    }

    July 26, 2017 at 7:09 am in reply to: I want to change the add to cart button to view details and also customize #73417
    Peter
    Member

    Hi visual1bc,

    If you want to keep that template and popup but don’t like the “add to cart” image, you can very easily upload your own PNG button to replace the default photo seller image.

    This can be done using one of the filters.

    Below is some example code to achieve that.

    In your theme’s functions.php file you can put this code:

    add_filter( 'wps_add_to_cart_img_url', 'change_add_to_cart_popup', 10, 1 );
    function change_add_to_cart_popup( $image ) {
    $image = 'http://www.pjkirk.com/wp-content/uploads/2017/07/some-other-add-to-cart.png';
    return $image;
    }

    Note: the above code assumes you uploaded a button image file called “some-other-add-to-cart.png”……so if you decide to use the above code you’ll need to change the above URL to match the image URL path which you will upload.

    July 25, 2017 at 6:20 am in reply to: Photo Seller – watermark in bulk import failed #75823
    Peter
    Member

    Yes thanks to DesMas for his code and thanks to bvnesbit for your feedback too.

    I will include it in the main code.

  • Author
    Posts
Viewing 15 posts - 226 through 240 (of 3,409 total)
← 1 2 3 … 15 16 17 … 226 227 228 →

Forum Related

  • Forum Home
  • Forum Search
  • Forum Registration
  • Forum Login

Support Related Forms

  • Contact Us
  • Customer Support
  • Request a Plugin Update
  • Request Fresh Download Links

Useful Links

  • Plugin Upgrade Instructions
  • WP eStore Documentation
  • WP eMember Documentation
  • WP Affiliate Platform Documentation
  • Tips and Tricks HQ Home Page
  • Our Projects

Quick Setup Video Tutorials

  • WP eStore Video Tutorial
  • WP eMember Video Tutorial
  • WP Affiliate Platform Video Tutorial
  • Lightbox Ultimate Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Shopping Cart Plugin
  • Simple Download Monitor

Copyright © 2025 | Tips and Tricks HQ