Brandon_Orndorff
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: !is_single(array()) Not WorkingPerfect!
Thank you both for your help, works great.
Forum: Fixing WordPress
In reply to: !is_single(array()) Not WorkingI am saving the numbers from a custom field in the admin area and calling them in with get_option(‘ignore_posts’)
What is saved to the database is 150,160,174,177 //while testing
So I guess is is a string with comma separated values
Ok, since I seem to be getting these types of requests regularly I will try to have an update out within a week to allow post and pages to be ignored by id. I will need to test this before I release it to be sure it doesn’t bug out anyones website but will be as quick as I can.
I will post here when its ready and allow the 2 of you to test before I release it if you’d like.
Please post a link to the website you are questioning and I will take a look from there.
Also any post, even those created by a plugin should have an id of some sort. Most likely places it into a custom one created by the plugin or your default category but we will look into it deeper to see what our options are.
I have not tested the following although it should work for what your trying to do:
1. Go to edit plugin and select the Digg Digg Alternative
2. Make sure the page aas-digg-digg-alternative/floating-social-bar.php is selected
3. Find the line that has:
if ( is_single() && get_option('mokis_social_data_posts') == 1 ){
4. Above that line paste the following line:
$cattoignore = 14
//with 14 being the category ID you want ignored5. Replace the line found in step 3 with the following:
if ( is_single() && get_option('mokis_social_data_posts') == 1 && get_query_var('cat') != $cattoignore){
Like I said I haven’t tested this yet but it should work for what your trying to do. After you try it out please let me know if there is anything else as well as letting others know if it worked for your issue.
If your icon is still not showing in Chrome try the following:
1. place your favicon.ico in both your theme directory and root of the website.
2. Hold Shift and reload the page twice
3. Your Icon should show upIf the icon still does not show up:
1. Leave the icons in both root and theme folder
2. Add<link rel="shortcut icon" href="https://www.cooksmarts.com/favicon.ico" />
to your header file.
3. Hold Shift and reload twice
4. Your icon should show upLet me know if either of these fix your problem and I will either continue to look into it or mark as resolved based on your answer.
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] Doe not display on all pagesThe bar does not currently show on category pages although this is something that we will look into with the next update. We are working on a rather large update to the plugin that may still be a while out.
I have not seen this issue and just tested it on 2 different sites to see if I can re-create and cannot. Can you give the link to your site where the plugin is active so that I may dive in and figure out the issue? Also when you de-activate the plugin the favicon comes back?
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] Pinterest positioningYou can edit the file directly that holds the plugin and add a line break above the Pinterest icon if you feel comfortable doing so. If not and you trust me to access it I can fix this as well but I will say it should be easy enough for you to do yourself.
1. login to your admin area for wordpress
2. select “Plugins -> Edit”
3. make sure you have AA’s Digg Digg Alternative selected
4. select the file “aas-digg-digg-alternative/floating-social-bar.php”
5. Find the line with the following code:
<a href="https://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>
(it will be in there 3 times, home, pages, posts)
6. in all three locations add<br>
before the<a href
and save it.
7. The floating bars settings may reset after saving this (like installed for the first time)
8. The reset issue should be fixed in the next update.If you have any problems with this please let me know and I will do my best to explain any aspect further.
Thank you for using the Digg Digg Alternative toolbar.
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] linkingDo you mean a Facebook share button? The way Facebook works on this plugin is that the user clicks like to like it and has the option to post it to their Facebook.
I have noticed that a small amount of users based on theme will have the Facebook like comment box show behind their site. We are looking into ways to fix this but it seems that depending on each theme the issue is something different. There will be an update with many changes to the bar, including fixes like this, ability to change colors and border as well as a few more social networks. Thank you for posting your concerns they are noted.
I’m glad you were able to get it figured out. Thank you for using the toolbar ??
I’m showing your website has a permanent redirect loop and is broken. If you can fix your site so that it is visible I will take a look and let you know what is going on with the floating bar.
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] Bar Floating in center of pageClosing since everyone seems to understand the new way layout works.
I’m glad you found the issue, I will be working on a few different choices for those that have the_content in more than one location on a single page or post.
the filter is in the social-floating-bar.php file, you can just search for:
add_filter (‘the_content’, ‘moki_add_social_content’, 0);