Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller – Changing text on details page and the agree to terms
Tagged: changing text
- This topic has 15 replies, 2 voices, and was last updated 8 years, 5 months ago by MakkBlakk.
-
AuthorPosts
-
May 28, 2016 at 10:09 pm #13506MakkBlakkMember
On the photo details page I would like to be able to remove the phrase above the size & qty table.
[http://blackmintcreative.com/photo_details/1/874/Brighton-Pier/view/]
The phrase “I agree to the terms and conditions” only shows as I agree to and oly reveals fully if you hover over the phrase.
May 29, 2016 at 2:13 am #73312PeterMemberTo remove the phrase above the pricing table in the photo details page do the following:
Edit your theme’s functions.php file and add the following code to the bottom of that file:
function modify_pricing_table_heading($pricing_table_heading){
$pricing_table_heading = '';
return $pricing_table_heading;
}
add_filter( 'wpps_filter_pricing_table_heading', 'modify_pricing_table_heading' );Regarding the terms string – your theme is for some reason setting the anchor tag colour to white. To fix this, do the following:
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-cart-checkout-terms a{
color: black;
}May 29, 2016 at 12:10 pm #73313MakkBlakkMemberThanks for that, all worked fine.
only question on this now is that would it be possible to make it clearer visually that you have to click on Terms & conditions to view them?
Say having that phrase as a button?
Thanks
May 29, 2016 at 2:54 pm #73314PeterMemberYou can change the colour from black to something brighter if you wish. You can even add some text-decoration as follows:
text-decoration: underline;
May 29, 2016 at 8:42 pm #73315MakkBlakkMemberJust an update
All is ok on my desktop but on mobile and tablet the terms & conditions are still white
May 29, 2016 at 9:00 pm #73316MakkBlakkMemberAnother small issue is if I change the Title of a Gallery on the main sales page the following page has the old Ttile.
How can I change this without having to reload all the photographs?
May 30, 2016 at 1:15 am #73317PeterMemberTo fix the mobile version add the following custom CSS code in the same custom css plugin you used earlier:
.wpps-mob-item-detail a{
color: black;
}Another small issue is if I change the Title of a Gallery on the main sales page the following page has the old Title.
I’m not sure what you mean – can you please show the links of the pages you are referring to?
May 30, 2016 at 9:52 am #73318MakkBlakkMemberSure
Go to the link below
[http://blackmintcreative.com/sales-gallery/]
Note the Gallery name, then go to this link
[http://blackmintcreative.com/sales-gallery/gallery1/]
Note the gallery name has not changed to the new name “Going London”
If I create a gallery from scratch these are the same. If I later change the Gallery name the title of the second page stays the same
Hope this helps to explain
May 30, 2016 at 11:23 am #73319PeterMemberOk I see what you mean now.
That’s easy to change – simply edit the following page from the wordpress pages menu:
[http://blackmintcreative.com/sales-gallery/gallery1/]
Once inside the page edit screen change the title of the page to whatever you wish.
I think in a future improvement we might make this an automatic thing whereby whenever a gallery title is changed the plugin will also change the corresponding gallery page title.
May 30, 2016 at 12:17 pm #73320MakkBlakkMemberThanks
Believe it or not the additional code cured the text issue on mobile and tablet except for text on the page but only telephone number for some reason
[http://blackmintcreative.com/sales-gallery/terms-conditions/]
Works fine on the desktop
May 30, 2016 at 11:50 pm #73321PeterMemberI can’t see any issue when viewing that page you referred to either with mobile device or desktop.
Also, that terms and conditions page is not actually part of the photo seller plugin. It is just another standard wordpress page and therefore any display quirks would be caused by the theme and not this plugin.
May 31, 2016 at 7:38 am #73322MakkBlakkMemberThis page worked ok prior to the plug in and the code you sent me cured this on the desktop.
I still see the issue on mobile and tablet.
May 31, 2016 at 11:19 am #73323PeterMemberI just viewed your terms page using my mobile and I can’t see any issue.
Can you please elaborate a bit more on what I should be looking for and exactly where it is?
May 31, 2016 at 4:08 pm #73324MakkBlakkMemberHi Peter
yes
Now seems ok on a mobile
On my iPad when the page fist loads the mobile number appears briefly and disappears this is number is throughout the page but is in the
first para after “Please read all these terms and conditions”
June 1, 2016 at 7:00 am #73325PeterMemberI believe this has nothing to do with this plugin and it is a quirk with the apple browser.
To prove this, you can try deactivating this plugin and viewing that page using an ipad and I bet you will see the same issue.
You could try entering the following custom CSS code to see if it fixes it:
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
} -
AuthorPosts
- You must be logged in to reply to this topic.