Search

WP Plugins AtoZ

Powered by johnoverall.com

WordPress Plugins A-Z #229

It's Episode 229 and I've got plugins for User Session Control, WordPress Security, and a great new call to action plugin. It's all coming up on WordPress Plugins A-Z!It’s Episode 229 and I’ve got plugins for User Session Control, WordPress Security, and a great new call to action plugin. It’s all coming up on WordPress Plugins A-Z!

Get all the grisly Plugin details and full access to the complete show notes on our website WPPluginsAtoZ.com! You can follow the show on Twitter at @wppluginsatoz, and join our Facebook at WordPressPluginsA2Z for the latest in WordPress Plugin related news - some we come across in-between shows, and some we talk about on our weekly show.

The WordPress Plugins A-Z Podcast can be found on iTunes, SoundCloud, Stitcher Radio and also on WordPress Radio. If you like what you hear on the show, we encourage you to share your enthusiasm with others that you know in the WordPress community and in social networks.
Share on Twitter: [bctt tweet="WP Plugins A to Z The Only #WordPress #Plugins #Podcast " username="wppluginsatoz"]
[dropshadowbox align="center" effect="lifted-both" width="88%" height="" background_color="#ffffff" border_width="3" border_color="#3a5d3b" ]

Self Promotion

While we do enjoy bringing you the show week after week, we also make our living with WordPress and related promotional services. With that, we ask for a moment of your time for some self promotion. If you find these promotions of value, please share them with friends and colleagues.

Promotions from John Overall:
Has your  WordPress site broken? Do you have a question or two about its functionality? Have you recieved the white screen of death? This may be time for some Emergency WordPress Support. Contact me at WPPro.ca/help or give me a quick call at 818-850-7729.


Promotions from Marcus Couch:
X² Marketing is your full-service digital marketing and brand development agency. Whether you are a solo entrepreneur, small business or enterprise level company; power up your marketing with X2. From WordPress to ClickFunnels, Landing Pages to Social Campaigns, SEO, Paid Ads, Infusionsoft management and more. Visit X2marketing.com and get in touch with Marcus about your digital marketing needs.

My new and improved Membership Coach program is your go-to resource for all the Training, Advice, and Support needed to Develop and Grow a Profitable Membership Site. Be sure to head over to MembershipCoach.com and get on the waiting list for the first sessions, launching soon. You can also follow @membershipcoach on twitter to get the latest release dates and news. Signups are now active and Pre-Launch Enrollment is open!

[/dropshadowbox]

John’s Rant: What to rant about?

Well this week it has been a bit of a busy one seems one job after another keeps flowing, combined with home renos has made for some challenging times. Now don’t get me wrong I love to be busy, I just forgot how long it actually take to properly paint the inside of a house.
 
This flows quite nicely into talking about renovating your website and updating your theme. While these tasks at first seem simple enough you go out buy some brushes paint and and new theme. The simply get started on the changes but hold on not so fast as I started in on this home project.
 
There is allot of prep that needs to go on before applying the fresh coast of paint, you need to clear the walls move the furniture, patch all the holes sand them down and then start taping up. Once that is done you begin applying the paint. This in of itself take a fair bit of time.. Once done sit back have a beer and let it dry. Then do the reveal by removing all the tape.
 
So how does this fit into sprucing up your WordPress website? Well this is the time to do a fair amount of prep and rethink everything you have running on your site as well as what is going to change with the new theme you have chosen. I have found recently that this is not thought though by some people when they start their site renos. They simply think replacing the theme will solve everything when what is needed is a rethink about all the plugins they have running as well.
 
So if your looking to do some site renos keep all this in mind.
 
Plus after the plugins I have a new section.
 

 

 

*WordPress Plugins Reviewed by John Overall**

 
User Session Control
The Lowdown:
This is another in my long list of multi site plugins it is simple enough in its usage and allows you to manage user sessions and know when and who is logging into your network. A very useful tool to see what is happening simply install activate then head over to the admin panel it provide and see who has been login in you get their IP who they are and if need be you can destroy the session. all in all pretty nice
 
Rating 4 Dragons
 
 
Refered by James Gavin
Premium Plugin
securemoz wordpress security plugin
 
The Lowdown:
This is a great little tool to run a security audit on your site. It runs 27 different test and let you know the results and if it finds anything worn let you know how to get it fixed and even offers some ways to accomplish this auto-magically for you. A nice addition to the security of your site. 
 
Rating 4 Dragons. 
 
 
Referred by Khalid Zidan
Freemium/premium Plugin
CoCeCa – Call To Action
Currently they are giving it away until August 30, 2015
 
the Lowdown:
This plugin looks to be pretty nice i did not particularly like the install process which made me add an email to create a temp account aside from that it is pretty nice. I like the creation of the popup and how you can determine its display as well as adding am image. all in all pretty nice. 
Rating 4 dragons. 
 
 
John’s discussion this week about a project.
So to add a bit more relevant material for the show I am adding this new section where i will discuss some issue I have had with WordPress this week.
 
Well the past couple of weeks has seen me doing some work on a Woo-commerce project and some customizations for the display page. This was in particular with the X-theme and its single product view
 
Something that was asked for was to move the tabs from the bottom of the page to the right hand side and then make it into an accordion. That is accomplished by adding some code to the functions file and making changes to the woo template and then adding some custom script.
 
so to start add this to your functions file
//adding woo functions just for fun
// Removes tabs from their original location
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 10 );
// Inserts tabs under the main right product content
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 60 );
 
This moves the tabs to the right
 
then change your code on the tabs.php file to this
<?php
/**
* Single Product tabs
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.0.0
*/
if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}/**
* Filter tabs and allow third parties to add their own
*
* Each tab is an array containing title, callback and priority.
* @see woocommerce_default_product_tabs()
*/
$tabs = apply_filters( ‘woocommerce_product_tabs’, array() );if ( ! empty( $tabs ) ) : ?><?php echo do_shortcode(‘’); ?>

<div class=”x-accordion”>

<?php foreach ( $tabs as $key => $tab ) : ?>
<div class=”x-accordion-group”>
<div class=”x-accordion-heading”>
<a class=”x-accordion-toggle collapsed <?php echo $key ?>_tab” data-toggle=”collapse” href=”#collapse-<?php echo $key ?>”><?php echo apply_filters( ‘woocommerce_product_’ . $key . ‘_tab_title’, $tab[‘title’], $key ) ?></a>
</div>
<div id=”#collapse-<?php echo $key ?>” class=”accordion-body collapse”>
<div class=”x-accordion-inner”>
<?php call_user_func( $tab[‘callback’], $key, $tab ) ?>
</div>
</div>
</div>

<?php endforeach; ?>

</div>

<?php endif; ?>

 
then you add this java code to the custom script in your customizer. 
jQuery(document).ready(function($){
$(‘.x-accordion-heading’).click(function(){
$(‘.accordion-body.collapse’).hide();
$(this).next().toggle();
});
});
 
After that you simply stylize it as you normally would any css.
 
Hopefully this may help someone save some time in the future.
 
 

Plugins Overview:

John’s Plugins:   User Session Control – 4, securemoz wordpress security plugin – 4, CoCeCa – Call To Action – 4

 


[dropshadowbox align="center" effect="curled" width="88%" height="" background_color="#ffffff" border_width="3" border_color="#3a5d3b" padding="20px" ]

Support WP Plugins A to Z

Be sure to check out the latest contest from WP Plugins A to Z with generous donations from Developers and other Businesses.

[bctt tweet="Enter to Win #Plugin licenses and More! WP Plugins A to Z #WordPress #Podcast https://wppluginsatoz.com/contests/ " username="wppluginsatoz"]

Are you a Developer? Need to get the Word out about Your Plugin? Submit it now to WP Plugins A to Z Podcast.

[bctt tweet="Submit your #Plugin for Review to WP Plugins A to Z #WordPress #Podcast https://wppluginsatoz.com/submit/ " username="wppluginsatoz"]
X² Marketing is your full-service digital marketing and brand development agency. Whether you are a solo entrepreneur, small business or enterprise level company; power up your marketing with X2. From WordPress to ClickFunnels, Landing Pages to Social Campaigns, SEO, Paid Ads, Infusionsoft management and more. Visit X2marketing.com and get in touch with Marcus about your digital marketing needs.

My new and improved Membership Coach program is your go-to resource for all the Training, Advice, and Support needed to Develop and Grow a Profitable Membership Site. Be sure to head over to MembershipCoach.com and get on the waiting list for the first sessions, launching soon. You can also follow @membershipcoach on twitter to get the latest release dates and news. Signups are now active and Pre-Launch Enrollment is open!

[/dropshadowbox]
Just some reminders:

Join my at the monthly ClassicPress / WordPress Meetup Classicpress / WordPress Meetup

Rate us on iTunes, blubrry.com, ViaWay.com, Stitcher Radio and any place else you find us.

Interact with your Hosts

John can be contacted at:
Website: https://www.johnoverall.com/
WordPress Emergency Support: https://wppro.ca/wpemergency
Email: john@wppro.ca

 

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this. Review Privacy Policy here

Close