leap
Forum Replies Created
-
Forum: Plugins
In reply to: [Appointments] Appointment Calendar no longer showing busy periodsAn update, I am not sure what happened but now new appointments started showing up correctly again.
Of all the things I tried I did take the working appointments plug-in files from the dev site and re-uploaded them to the live site just in case. Don’t know if that solved it.
It does appear that only new appointments made show up as booked, old ones wouldn’t but no so bothered by that.
I have this same issue except that the text for me is too small to read. I haven’t yet been able to find a good way to get this working correctly.
One not ideal solution is to use CSS and !important statements in some media queries to make the tet size more appropriate, the problem with this is with multiple items in a slideshow you then have to re-position everything within CSS outside of Masterslider and effectively overwrite what Masterslider does. It also means any new slides added won’t look good on mobile unless code is changed.
Each item in the slider gets the following class: .msp-cn-1-x (x is a unique number for each item) and you can use that to assign CSS.
This is not brilliant and is a bit of a pain but should get things working.
Sorry about that, I could swear I put the link in but here goes:
This issue is related to the theme using a new and unique method for delivering content (if I remember correctly), they have a few posts about it on there forums but nothing I tried helped.
In the end I used CSS to hide the offending items, I expect there is a solution that will fix it properly but I never had the time to look into it properly.
Below is a link to a post on there forum which has links to the many posts on the subject:
Apologies for putting the link into the sentence, I didn’t notice that there was a /link button after you click link.
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Remove link from image terms?Hi Michael,
First great plug-in, I am using it with the WP e-commerce plug-in to add images to the variations and I was skepticle as to it working but it worked with little to no hassle.
I have the same issue with the links that bento has mentioned above and tried the code you supplied and it showed nothing for me also.
I did do some digging and found that the terms in the $terms variable are just the images wrapped (by default) in an unordered list. Then when you cast it into an array you just get an array with one index that contains the unordered list.
So the following line where you check if the $term->image_id is empty will always fail:
if ( ! isset( $term->image_id ) )
Do you or anyone have any ideas to help?
Thanks very much