srumery
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Side Tab] Mobile View on BottomWell, hello there, @kimkzoo! 😉
Moving the tab to the bottom is not an option in the settings so it must be done using CSS only. Give this a shot and let me know how it goes.
@media screen and (max-width: 767px) {
a#rum_sst_tab {
position: fixed;
bottom: -1px;
left: 50%;
transform: translateX(-50%);
cursor: pointer;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
top: auto;
right: auto;
}
}Forum: Plugins
In reply to: [Simple Side Tab] Button Displaying over mobile menu but it’s not clickableBrilliant!
Forum: Plugins
In reply to: [Simple Side Tab] Button Displaying over mobile menu but it’s not clickableHi @groggy72,
Thanks for using Simple Side Tab.
From what I can see, it actually IS working on mobile but it looks like it isn’t when you are on the homepage. Let me explain my findings.
The tab URL is set to “https://suzielucks.com.au/#book” so the expected behavior is when you press the “Book” tab, it will take you to the homepage and scroll down to the #book anchor location further down the page.
Non-homepage: Open any page that is not the home page, like the about page, open the mobile menu, then press the “Book” tab. That takes you to the specified URL which is the homepage and scrolls down to the #book anchor.
Home page: When you are on the homepage and press the “Book” tab, it scrolls down to the same #book anchor location, however you can’t see it because the mobile menu is still open. If you close the menu you will see that you are where you expect to be.
So I think there are three options.
- Add some JavaScript that closes the mobile menu when the Book tab is pressed. (best but requires code)
- Hide the tab on the homepage for mobile only so it is not confusing. (not great but easy)
- Create a new page for the booking form and change the URL of the tab to that new page. (easy but maybe not the best if you don’t want to move your content.)
There are trade offs for each one but something has to give in order to get the functionality you are looking for.
Cheers!
Forum: Reviews
In reply to: [Simple Side Tab] Super handy plugin.Thank you, @groggy72! And thank you for using Simple Side Tab.
Cheers!
Forum: Plugins
In reply to: [Simple Side Tab] Remove the side tab on mobilesGreat! I’m glad you were able to get this to work the way you need it to.
Forum: Plugins
In reply to: [Simple Side Tab] visible only on a few pagesHello @didier303,
Thank you for using Simple Side Tab. 🙂
Yes, it is possible to display the tab on specific pages. There is a link to the solution in the FAQ. There are some code snippets in the FAQ that reference how to do this. Have a look and let me know how it goes.
Forum: Plugins
In reply to: [Simple Side Tab] Error Log Warnings fixThe fix has been deployed. Thanks for the heads up on that @jarstan.
Cheers!
Forum: Plugins
In reply to: [Simple Side Tab] Error Log Warnings fixThank you for bringing this to my attention, @jarstan. I reviewed the code it is related to browser support that is now outdated and it can be removed. It will be updated in the next release.
Forum: Reviews
In reply to: [Simple Side Tab] You Make Me Look So Good!!Thank you, @sheilawiley!
You made my day! 🙂
Forum: Plugins
In reply to: [Simple Side Tab] WPMLSorry for the delay, @nomades. I’m not able to recreate the issue.
One way to handle this is to change the tab text using one of the filters in the plugin. On this plugin page look at the FAQs. You will see one titled “How can I conditionally change the tab text?”. You could use that to change the text depending on what language is selected.
I know that is not exactly ideal but it could solve the problem.
Thank you for your reply, @vaakash. We’ll see if it happens on our next site. If it does, then I will dig a little deeper to see if I can figure out what happened.
Feel free to close this out.
Cheers!
- The plugin is not network activated. It is only activated for sites that need it.
- Administrator.
- I am using the version in the repo, not the pro version.
We’ve been using this for a couple years now so I am surprised that it is no longer working. Why would an Administrator not have access to the custom post type for the Shortcoder content?
Hello @vaakash,
Thank you for your quick reply. I tried to deactivate and activate the plugin and the outcome is still the same.
For the path,
/wp-admin/edit.php?post_type=shortcoder, it says…You need a higher level of permission.
Sorry, you are not allowed to edit posts in this post type.What can I try next to help resolve this issue?
Forum: Plugins
In reply to: [Simple Side Tab] WPMLHey @nomades, I haven’t forgotten about this. I need to setup a test area and try to recreate this issue before it can be resolved. I’ll update this thread when I have it resolved.
Forum: Plugins
In reply to: [Simple Side Tab] WPMLAre you able to target the anchor tag using CSS id of “rum_sst_tab”?
id="rum_sst_tab"String translation on that should work for you. Give that a shot and let me know how it goes.