LeahGrrl
Forum Replies Created
-
Nope, haven’t done it yet. Not the greatest coder, so I was hoping someone more knowledgeable might jump in. ??
@timblake3 did you find a CSS workaround for this? I have the same issue, and it seems like adding Before code in the calendar widget in Divi should fix the category colors?
I have used this and I think…I think…it works! I’ve logged in with my different levels of testing accounts and it seems to work.
Thank you so much for this! It was truly helpful. Donating to the plugin and/or upgrading now.
I wish this had worked but it did not. I placed it in the child theme (of Genesis) functions.php and it still showed results for the search that included items that the logged-in user did not have access to. It showed the “You do not have access to this course” tag but still showed the course title in the search results.
I appreciate your trying to help me with this!
Would this function be a guideline for other plugins based on user roles (for instance, we use LearnDash with the Members plugin so that different levels of employees can’t access higher levels of training)?
I’m not the greatest at PHP. Thank you.
Forum: Plugins
In reply to: [Event List] Custom CSS not overriding plugin's CSS?Here’s my workaround, in case it’s helpful to anyone. I’m not a developer, so you may wish to point out something easier. ??
1. I use the Simple Custom CSS plugin, and so I copied the entire CSS for the plugin (it’s only about 140 lines or so) into the editor (Appearance-Custom CSS). Save.
2. Then I went to the Event List-Settings page. I chose the tab called Frontend Settings.
3. At the bottom is the label Disable CSS file. I clicked on the checkbox next to “Disable the “event-list.css” file.” Save Changes.
4. Then I went back to the Custom CSS and manipulated the elements there.
Voila, works great. Although there seem to be some classes/elements not defined in the plugin’s CSS (like “event-location”??). I’m still working on that but thought I would share a hack. I also think this should hold if the plugin is updated and I don’t want to lose my style. (Though I would have to inspect the new CSS file to verify I wasn’t now missing anything important.)
Forum: Plugins
In reply to: [Event List] Don't display widget if event list is emptyWas there ever an answer to this?
Forum: Plugins
In reply to: [Event List] Event Details Font Size in Custom CSS?Thanks for sharing your resolution! It’s helpful.
Forum: Plugins
In reply to: [Event List] event-list.css file locationI actually did try that because I’m used to being able to add custom css and it usually works fine–I figure out what the class is via “inspect” even if I can’t get at the style sheet. This time it doesn’t seem to change anything. I will add the !important and see if that works–I’m not sure I fully understand what that does. Thank you for taking time to reply!
Forum: Plugins
In reply to: [Event List] event-list.css file locationDid you ever receive a reply or find a solution? I am struggling to style this to fit my site.
Forum: Plugins
In reply to: [Add Category to Pages] Doesn't work with WP 4.4Your *page* editing screen should now have a right-hand entry box (just like your post editor) where you can create/assign a category to that page.
Forum: Plugins
In reply to: [Add Category to Pages] Create a sidebar of category-based pagesWell, I never did get an answer; it looks like the author of this plugin is not supporting it anymore. It still works on my site, though I cannot find an answer to my 5-month-old question.
Has anyone found a different plugin or solution?
Thank you!
Forum: Plugins
In reply to: [mobble] iPad landscape and portrait orientation differ?Thank you for your speedy response!
I wonder whether another plugin (I’m thinking Responsive Menu, which I had to add to this relatively old site) is interfering somehow, too? I tried the conditional you suggested and I suspect I don’t know enough syntax to make it work because I got a blank screen after the top header. (All the “divs”?) I will keep trying and also change the order to see whether it makes a difference. (Not a true developer, as you can tell.)
Thanks again.
Forum: Plugins
In reply to: [Simple Lightbox] Using SLB and video add-on in page templateBecause we changed themes, I ended up using the image and video in a widgetized (slider) area, and it works. I added a simple text widget and then just used the following:
<html> <p style="text-align:center"> <br> <a href="https://www.youtube.com/watch?v=xxxxxxxxxx?rel=0"> <img src="https://...."> </p> </html>
However…this creates another issue, for which I’ll create a new post if needed. Thank you again for your help.
Forum: Plugins
In reply to: [Simple Lightbox] Using SLB and video add-on in page templateThank you for your reply! And yes, I am not good at coding, so I’ll ask where this goes and what is called by the $content variable in your website instructions.
Where it goes:
Between php open and close, where I want it on the page? Does it need its own div or php tags?Content: Would the content be just the image link as below? It seems like it wouldn’t call the video popout then.
$content = 'xxx/images/picture1.jpg'; if ( function_exists('slb_activate') ) $content = slb_activate($content); echo $content;
So would it be the more complex:
$content = '<a href="https://www.youtube.com/watch?v=tmz1jwED35Q"><img scr="xxx/images/picture1.jpg></a>'; if ( function_exists('slb_activate') ) $content = slb_activate($content); echo $content;
I’ve tried to look at the Codex and a couple of WP tuts sites (your site is hard for me to navigate to find answers there). Thank you for your help. I’m also writing this all down in a reply so that other folks might benefit.