intheshallow
Forum Replies Created
-
Forum: Plugins
In reply to: [WP RSS Multi Importer] Default image/grabbing proper image problemshttp://www.mychurchresourcechannel.com/religious-news/church-news/pastors
This section is having problems with the content being grabbed on some of them. I have no idea what is going on with it.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Thumbnails not updating video playerI am having the exact same problem. I just installed the latest version.
Forum: Plugins
In reply to: [Knews Multilingual Newsletters] Password protected admin folder problem.Can I get some kind of answer? I’m a paying customer.
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workYup. Both solutions should do the trick. Depends on how you’d like to handle it.
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workHmmmm. Maybe it was being overwritten by another code? When I test it, I did it on my own template. The template that you’re using usually has shortcodes on it.
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workktevlin. You’re not using what I mentioned to do. When you are ending the row, you need to use one_fourth_last, not one_fourth. Using one_fourth at the end of the column is adding the extra right margin. You’re also not allowing the clearfix to come into play.
Always keep in mind to use one_fourth_last or two_third_last etc when you’re on the last column of that row.
Example:
4 Columns should look like:
one_fourth, one_fourth, one_fourth, one_fourth_last
2 Columns:
one_half, one_half_last
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workNo problem. I’ve been using my coding on quite a few pages. It seems to be working just fine. If you find something wrong with it, let me know. I can edit it if you’d like.
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workFrom all of the variables that fit with each other, I have all percentages at 100%. Took me a little time but I think it should all work as long as you use the percentages properly.
For instance:
If you want two_fifth, use it with three_fifth_last.
Another example: one_forth, use three_forth_last. You can even use one_forth for 4 columns. Just do: one_forth, one_forth, one_forth, one_forth_last and you have a perfect 100%.
If I missed a variable, let me know and I will fix it.
.one_half, .one_third, .two_third, .one_fourth, .three_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth { float: left; } .clear_column { display: block; width: 100%; height: 0px; line-height: 0px; font-size: 0px; overflow: hidden; clear: both; } .one_half { width: 49%; margin-right: 2%; } .one_half.last_column { width: 49%; margin-right: 0px; } .one_third { width: 32%; margin-right: 2%; } .one_third.last_column { width: 32%; margin-right: 0px; } .two_third { width: 66%; margin-right: 2%; } .two_third.last_column { width: 66%; margin-right: 0px; } .one_fourth { width: 23.5%; margin-right: 2%; } .one_fourth.last_column { width: 23.5%; margin-right: 0px; } .three_fourth { width: 74.5%; margin-right: 2%; } .three_fourth.last_column { width: 74.5%; margin-right: 0px; } .one_fifth { width: 18.4%; margin-right: 2%; } .one_fifth.last_column { width: 18.4%; margin-right: 0px; } .two_fifth { width: 39%; margin-right: 2%; } .two_fifth.last_column { width: 39%; margin-right: 0px; } .three_fifth { width: 59%; margin-right: 2%; } .three_fifth.last_column { width: 59%; margin-right: 0px; } .four_fifth { width: 79.6%; margin-right: 2%; } .four_fifth.last_column { width: 79.6%; margin-right: 0px; } .one_sixth { width: 15%; margin-right: 2%; } .one_sixth.last_column { width: 15%; margin-right: 0px; }I would also like to know how to stop them from displaying on Pages.
Wait, I just noticed someone installed Super Cache at some point. I’m betting this is the issue. I always hated that piece of crap plugin.
Hey. I don’t need help anymore with it. I wound up copying each then deleting the old. But I’m sure it will come in handy for others in the future.
I know this is old but I didn’t see a solution and figured it out for myself. Here is my solution:
You need to go into the nivoslider4wp.php file and do a find of “Nivo Slider for WordPress”. You’ll find this line:
add_menu_page(‘Nivo Slider for WordPress’, __(‘Nivo Slider For WordPress’), ‘read’, __FILE__, ‘nivoslider4wp_panel’, get_option(‘siteurl’) . ‘/wp-content/plugins/nivo-slider-for-wordpress/img/menu.png’);
Now replace this line with this:
if (current_user_can(10)) {
add_menu_page(‘Nivo Slider for WordPress’, __(‘Nivo Slider For WordPress’), ‘read’, __FILE__, ‘nivoslider4wp_panel’, get_option(‘siteurl’) . ‘/wp-content/plugins/nivo-slider-for-wordpress/img/menu.png’);
}This will hide the tab from anyone except the Admin. Now this isn’t a permanent thing, they can still access Nivo Slider if they know the direct link to it but I doubt that part is a big deal.
You can place the “if (current_user_can(10)) { }” line around the entire nivoslider4wp-option.php, nivoslider4wp-panel.php, nivoslider4wp-show.php and that will permanently disable it I believe. I am working on a client’s design so I don’t have time to really test it all out.
Hope this helps.
I used [lwa] and it worked fine.
To answer your question, sometimes if you copy and paste a shortcode inside the Visual Tab, it’ll output the brackets as something else. Check the line of code in the HTML tab and fix if need be.
Forum: Plugins
In reply to: [Widgets Reloaded] Feature Request – ArchivesI would also like some acknowledgement of this possibly being added in?
Oh, you enter it in the actual code, my bad. Next time can you make sure to point this out in examples on your plugin?