Mad-As-A-Writer
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Profile Search] Exclude private fields (“Only Me”) from search resultsHi Andrea,
No problem and thank you very much for your reply, and for all of your effort creating and maintaining the plugin! Take care.Wanted to say I had this problem too but thanks to another post it was narrowed down as a conflict with WP Smush Lazy Load – I disabled lazy load for class .swiper-slide-image, cleared my cache, and it resolved the issue.
- This reply was modified 3 years, 5 months ago by Mad-As-A-Writer.
I have the same error on two sites. See it here: https://www.screenwriters.online/
Chrome console gives me a message that may be of use:
“A cookie associated with a cross-site resource at https://facebook.com/ was set without theSameSite
attribute. It has been blocked, as Chrome now only delivers cookies with cross-site requests if they are set withSameSite=None
andSecure
. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https://www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032.”Although it’s happening on Safari on desktop and iPad as well, despite clearing cache and cookies.
- This reply was modified 4 years, 7 months ago by Mad-As-A-Writer.
- This reply was modified 4 years, 7 months ago by Mad-As-A-Writer.
This worked for me to hide it on Posts, the Blog page, and one other page targeted by the page id. Add it to your Additional CSS section in the Customiser.
.single-post #fb-root {
display: none;
}
.blog #fb-root {
display: none;
}
.page-id-165 #fb-root {
display: none;
}- This reply was modified 4 years, 7 months ago by Mad-As-A-Writer.
Forum: Plugins
In reply to: [Slidebars] How to change position of icon?Hi jaxrachel, the section you are looking for is changing “200%” to “100%” I have CSS code I was able to use to make it closer to the left side, but if on the right I had to resort to changing the PHP file directly because a recent change made the original settings overwrite the new. On my site with the plugin NOT updated, this was the code that worked:
/*Slidebar on Left Settings*/.wksl-slidebar .wksl-slidebar-trigger {
top: 50%;
-webkit-transform: translateY(-50%) translateX(100%);
transform: translateY(-50%) translateX(100%);
right: 0px;
}/* Slidebar on Right Settings */
.wksl-slidebar .wksl-slidebar-trigger {
top: 50%;
-webkit-transform: translateY(-50%) translateX(-100%) !important;
transform: translateY(-50%) translateX(-100%) !important;
left: 0;
}Comment out or delete whichever you aren’t using, don’t have right and left CSS active at the same time.
If you already have the last update of the plugin installed and you want the slider on the right, you have to edit the php directly using something like FileZilla and an editor like Atom or SublimeText. In that case, Deactivate slidebars in your WP plugin list for safety, then use an ftp program like FileZilla to find the slidebars folder (probably public_html/wp-content/plugins/slidebars/) and open the ‘public’ folder and edit the Sidebars.php file (or download it, and duplicate it for safety so you have an original untouched file, then edit it, then reupload it).
Where it says <?php if $style_settings[‘position’] == ‘right’) … change translateX(-200%) to translateX(-100%) in both instances, save, reupload the file to your site if needed, and it will align right. Hope that helps. If not, find me at my site tinytigertech.com to email me ??