Forum Replies Created
-
AuthorPosts
-
August 12, 2017 at 11:46 pm in reply to: Photo Seller – Lightbox appears under theme menu bar #72828
Peter
MemberGo 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 #72826Peter
MemberThe 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.
Peter
Member1) 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;
}Peter
MemberThese 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 commentPeter
MemberOk thanks.
I think I will need take a closer look at your site.
I’ll send you an email.
Peter
MemberHi 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?
Peter
MemberI 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?
Peter
MemberOk thanks for the info.
I will do some tests and see if there is a bug and let you know.
Peter
MemberOK 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.
Peter
MemberYou 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 #76134Peter
MemberI have sent you an email.
August 3, 2017 at 5:25 am in reply to: Photo Seller – Enable Instore Pickup option not showing up #76133Peter
MemberI think you may have found a little bug.
I will investigate and apply a fix and let you know.
Peter
MemberYes 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 #73417Peter
MemberHi 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.
Peter
MemberYes thanks to DesMas for his code and thanks to bvnesbit for your feedback too.
I will include it in the main code.
-
AuthorPosts