awwnuts
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Auto Post to Author's Pages?I have no tried to completely unlink all accounts from the site, going to reinstall, and try again.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Auto Post to Author's Pages?I tried uninstalling then reinstalling jetpack to fix this problem, but had no luck.
I read during a google search that jetpack stores information on wordpress.com, so uninstalling the plug in really didn’t cause much of a reset.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Auto Post to Author's Pages?I just tried it on an author account from the dashboard, and it had no success posting on the saved twitter and facebook pages for the author form there either.
It appears that the issue may be somewhere else.
Any idea why its not posting to the authors accounts?
Forum: Plugins
In reply to: [Social] How to display social on front end profile?To display I have this:
<?php do_action( 'show_user_profile', $profileuser ); ?>
To try to save, I have this
do_action('personal_options_update', $current_user->ID);
It isn’t saving at all. What else do I need to load to make this happen?
Forum: Plugins
In reply to: [Social] How to display social on front end profile?I have it displaying on the page now, but can not get it to update.
I just added the hooks for the users edit profile to the front end.
It will authorize twitter fine, but not save it, so its blank non stop.
And it won’t even get that far with facebook.Any thoughts?
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] How do I hide unused buttons?feel free to put that code in your next update. It’ll get rid of having annoying empty boxes come up.
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] How do I hide unused buttons?I’m was not unhappy with anything in the plug in itself. It is a very nice and very new plug in, I just wanted you to know the bugs that were in it.
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] How do I hide unused buttons?I modified the puretheme-social file after today’s update to display only the social media icons that the user has entered in the plug in settings.
<?php echo PTSST_get_setting( 'pure_social_tabs', 'general', 'custom-css' ); ?> <div class="main_social"> <?php $facebook = PTSST_get_setting( 'pure_social_tabs', 'general', 'facebook' );?> <?php if($facebook!=''){ ?> <div class="facebook_area on"> <div class="facebook_left"> <i class="fa fa-facebook c_facebook"></i> <iframe allowtransparency="true" frameborder="0" scrolling="no" src="https://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2F<?php echo $facebook;?>&width=240&height=346&colorscheme=light&show_faces=true&border_color&stream=false&header=false" style="border: 0px solid #fff; height: 346px; overflow: hidden; width: 240px;"></iframe> </div> </div> <?php } ?> <?php $twitter = PTSST_get_setting( 'pure_social_tabs', 'general', 'twitter' );?> <?php if($twitter!=''){ ?> <div class="twitter_area on"> <div class="twitter_left"> <i class="fa fa-twitter c_twitter"></i> <div style="width:248px;font-size:8px;text-align:right;height:225px"> <div id="twitter-box"></div> <script> var tw_user = '<?php echo $twitter;?>'; var tw_width = 248; var tw_height = 325; var no_face = 10; (function() { var tw_box = document.createElement('script'); tw_box.type = 'text/javascript'; tw_box.async = true; tw_box.src = '<?php echo '' . plugins_url( 'js/twitter.js' , __FILE__ ) . '';?>'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(tw_box); })(); </script> <div class="hidebar"></div> </div> </div> </div> <?php } ?> <?php $gplus = PTSST_get_setting( 'pure_social_tabs', 'general', 'gplus' );?> <?php if($gplus!=''){ ?> <div class="google_area on"> <div class="google_left"> <i class="fa fa-google-plus c_google"></i> <div style="float: left; margin: 10px 10px 10px 15px;"> <div class="g-plus" data-action="followers" data-height="250" data-href="https://plus.google.com/<?php echo $gplus;?>" data-source="blogger:blog:followers" data-width="270"> </div> <script type="text/javascript">(function () {window.___gcfg = {'lang': 'en'};var po = document.createElement('script');po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js';var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po, s);})();</script> </div> </div> </div> <?php } ?> <?php $youtube = PTSST_get_setting( 'pure_social_tabs', 'general', 'youtube' );?> <?php if($youtube!=''){ ?> <div class="youtube_area on"> <div class="youtube_left"> <i class="fa fa-youtube c_youtube"></i> <div style="float:left;margin:1px 0px 0px 2px;"> <iframe src="https://www.youtube.com/subscribe_widget?p=<?php echo $youtube;?>" style="border: 0 none;height: 70px;margin-top: -2px;width: 220px;margin-left: -3px;" scrolling="no" frameBorder="0"></iframe> </div> </div> </div> <?php } ?> </div>
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] Twitter does not show anything.recent update took care of it. thanks.
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] How do I hide unused buttons?I just commented out the youtube part of the php file. So now it is hidden.
ok cool. If I find anything else about it that is useful information, I’ll throw it on this thread in case others are wondering.
OK cool. thank you for that information.
Is there anything that I can put into my website so that when it refers to other sites they seem my site as a referrer?
Has anyone experienced this problem? I have tried google, but am not yielding any results of value.
any help?
<?php $categories = get_categories(array('orderby'=>'name','parent'=>3,'hide_empty'=>0)); foreach($categories as $categories){ ?> <input name="categories" type="checkbox" value="<?php echo $categories->cat_ID; ?>" /><?php echo $categories->name; ?><br /> <?php } ?>
Sorry, the first one displayed sort of sloppy.