Daniel Rodrigues
Forum Replies Created
-
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Book button now missingI didn’t change nothing, i just assigned the css declaration to a class.
Like this:.classname input[type="submit"]{ ... }This way it will only affect the input inside the element with the class “classname”. And it will not affect the input of the plugin, which is the book now button
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Book button now missingHey guys, my problem turned out to be a conflict between css declarations.
The button generated by the plugin inherited settings from my css like position:absolute; and others, which made the button invisible.input[type="submit"]{ ... }So try to specify your css declarations to a class or id.
Thanks support team to help solve this.
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Erase from databaseYes, thank you
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Erase from databaseThank you.
Just trying to completly reset the plugin to see if I can make the “book now” button appear.
Have you found out the solution to this problem ?Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Book button now missingNot yet. I spoke with them via their support email. Gave them ftp and login access, and they pointed me to an error that wasn’t the reason for the button to not show up. They also said that they will reach me this monday with a solution, but it didnt happen.
Too bad because I really like this plugin, and needed to use it because of the ability to select hours intervals. Also, I need to have more than one calendar and therefore i was thinking of getting the PRO version, but I will have to give up the idea, if I can’t find a solution quickly.
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Book button now missingI tried on another server with the same website, and it fully works.
And the server specs are the same. The only spec that isn’t checked on both servers is the cURL version which is 7.26.0 on both servers. Very weird.Looking forward to get this solved, thank you very much.
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Book button now missingDid you figured it out? I’m having the same problem
Forum: Plugins
In reply to: [JC Submenu] Add Specific class or data atribute to li tag of sub-menu.Well, i have. But i managed how to do it, but I don’t know if that it is a better solution.
I needed that the href of the populated items to be, instead of the permalink, an hashtag with the slug. Because I need to get those posts with AJAX, so i dont the page to reload.
To do this i went to your plugin folder and in the
function populate_tax_itemsof the SubmenuWalker.php file I changed this:$t->url = get_term_link( $t, $value );to$t->url = "#" . $t->slug;.Is there a better solution that don’t mess with your plugin files?
Forum: Plugins
In reply to: [JC Submenu] Add Specific class or data atribute to li tag of sub-menu.And again, Thanks a lot for the support, really appreciate it.
Forum: Plugins
In reply to: [JC Submenu] Add Specific class or data atribute to li tag of sub-menu.Eish, i downloaded your plugin a few days ago, I didn’t notice that the new version was already available. Sorry man, that works now.
Forum: Plugins
In reply to: [JC Submenu] Add Specific class or data atribute to li tag of sub-menu.I think thats what i have, sub-menu items are being populated with all the terms that the chosen taxonomy has. Of course that i do this using your plugin in wp-admin/nav-menus.php .
I’m using the local server MAMP and i think that it has caching active.
I tried to echo something and nothing was shown. Even tried changing the filter and got the same results.
Forum: Plugins
In reply to: [JC Submenu] Add Specific class or data atribute to li tag of sub-menu.That didn’t work :S
I added the code to the theme’s functions.php, changed the $classes value to the term slug and nothing has changed. After that i just pasted the code that you gave me in functions.php file, expecting to see the class ‘my-custom-class’ showing up in the li tags, still nothing happened.Thanks a lot for the support,
Daniel