stefk
Forum Replies Created
-
Forum: Plugins
In reply to: [ZM Ajax Login & Register] Add Extra Custom field in Registration formSame here! would be nice
This was resolved – needed to update events manager.
Ah, i finally found it earlier. Was staring me right in the face! Thank you.
Hi KTS915
Thank you, yes i am a pro licence holder but still cant find this setting?
Regards
StefForum: Plugins
In reply to: [Video Sidebar Widgets] Video Works – Problem is Audio AutoplayingHi Denzel
Apologies – my mistake. After looking at it for a few hours realized was mu error. Loaded a responsive widget area which was loading automatically.
regards
StefForum: Plugins
In reply to: [WooCommerce Bulk Discount] Bulk Discount applying to each product variation@patkirts – any feedback on a solution?
Forum: Plugins
In reply to: [Our Team by WooThemes] How to Add Multiple New Fields – HelpHi all, i solved this:
Add as per normal to functions.php
The first bit is the backend fields, and the second bit is for display on front-end.
1st BIT:
[ Moderator note: Code fixed, please wrap code in backticks or use the code button. ]add_filter( 'woothemes_our_team_member_fields', 'my_new_fields' ); function my_new_fields( $fields ) { $fields['misc'] = array( 'name' => __( 'Quotes', 'our-team-by-woothemes' ), 'description' => __( 'Staff Quotes', 'our-team-by-woothemes' ), 'type' => 'text', 'default' => '', 'section' => 'info' ); $fields['misc2'] = array( 'name' => __( 'Qualification', 'our-team-by-woothemes' ), 'description' => __( 'Qualification', 'our-team-by-woothemes' ), 'type' => 'text', 'default' => '', 'section' => 'info' ); $fields['misc3'] = array( 'name' => __( 'Cell', 'our-team-by-woothemes' ), 'description' => __( 'Cell', 'our-team-by-woothemes' ), 'type' => 'text', 'default' => '', 'section' => 'info' ); $fields['misc4'] = array( 'name' => __( 'Email', 'our-team-by-woothemes' ), 'description' => __( 'Email', 'our-team-by-woothemes' ), 'type' => 'text', 'default' => '', 'section' => 'info' ); $fields['misc5'] = array( 'name' => __( 'Linkedin', 'our-team-by-woothemes' ), 'description' => __( 'Linkedin', 'our-team-by-woothemes' ), 'type' => 'text', 'default' => '', 'section' => 'info' ); return $fields; }2nd BIT:
add_filter( 'woothemes_our_member_fields_display', 'my_new_fields_display' ); function my_new_fields_display( $member_fields ) { global $post; $misc = esc_attr( get_post_meta( $post->ID, '_misc', true ) ); if ( '' != $misc ) { $member_fields .= '<li class="misc">' . $misc . '<!--/.misc-->' . "\n"; }; global $post; $misc = esc_attr( get_post_meta( $post->ID, '_misc2', true ) ); if ( '' != $misc ) { $member_fields .= '<li class="misc">' . $misc . '<!--/.misc-->' . "\n"; }; global $post; $misc = esc_attr( get_post_meta( $post->ID, '_misc3', true ) ); if ( '' != $misc ) { $member_fields .= '<li class="misc">' . $misc . '<!--/.misc-->' . "\n"; }; global $post; $misc = esc_attr( get_post_meta( $post->ID, '_misc4', true ) ); if ( '' != $misc ) { $member_fields .= '<li class="misc">' . $misc . '<!--/.misc-->' . "\n"; }; global $post; $misc = esc_attr( get_post_meta( $post->ID, '_misc5', true ) ); if ( '' != $misc ) { $member_fields .= '<li class="misc">' . $misc . '<!--/.misc-->' . "\n"; }; return $member_fields; }Forum: Plugins
In reply to: [Facebook Page Publish] Permissions ErrorAfter 2 weeks of waiting for a reply and mail the developers directly, i opted to change to the following plug-in https://wordpress.org/plugins/facebook-auto-publish/ – it worked with no issues.
Forum: Fixing WordPress
In reply to: Need to Add a Widget Area Below BannerBy the way: 2 Notes…
CSS:
Only need this as only picks this up for all those new widgets.
#header-sidebar {
border: 1px solid #cccccc;
display:block;
height: 260px;
}#t_sidebar {
float: left;
width: 140px;
margin-right:10px;
display:inline;
text-align:left;
}In step 1:
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(4) ) : else : ?>The number in brackets needs to be unique and correspond to the individual widget or wont work. BAsically will make all of them pull the same data.
Forum: Fixing WordPress
In reply to: Need to Add a Widget Area Below BannerWow, i finally did it. This was very tricky and mixed alot of content i had written to enable this function without disrupting my themes layout.
STEP 1:
I first duplicated by sidebars and made and extra six winch would now be the sidebars”widget areas” below my header.
t_sidebar.php to t6_sidebar.php. Each had the following text and of course corresponding to the sidebar name:
<!– begin t5_sidebar –><div id=”t5_sidebar”>
<ul id=”t5_sidebarwidgeted”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(4) ) : else : ?><h5>Recently Written</h5>
-
<?php get_archives(‘postbypost’, 10); ?>
<h5>Categories</h5>
-
<?php wp_list_cats(‘sort_column=name’); ?>
<h5>Archives</h5>
-
<?php wp_get_archives(‘type=monthly’); ?>
<?php endif; ?>
</div>
<!– end t5_sidebar –>
STEP 2:
Insrted the following code where i wanted it to display in the header.</div>
<div id=”third”>
<?php include(TEMPLATEPATH.”/t_sidebar.php”);?>
</div><div id=”fourth”>
<?php include(TEMPLATEPATH.”/t1_sidebar.php”);?>
</div><div id=”fifth”>
<?php include(TEMPLATEPATH.”/t2_sidebar.php”);?>
</div><div id=”sixth”>
<?php include(TEMPLATEPATH.”/t3_sidebar.php”);?>
</div><div id=”seventh”>
<?php include(TEMPLATEPATH.”/t4_sidebar.php”);?>
</div><div id=”eighth”>
<?php include(TEMPLATEPATH.”/t5_sidebar.php”);?>
</div>Step 3:
Did the styling as below:
#header-sidebar {
border: 1px solid #cccccc;
display:block;
height: 260px;
}#t1_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}#t2_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}#t3_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}#t4_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}#t5_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t6_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}And there, it was done. 🙂 Have a read here to http://www.sueblimely.com/add-widget-ready-sidebars-to-wordpress-footers/
Forum: Fixing WordPress
In reply to: Cancel hosting and domain transferyes its just a “software”. If its regular hosting, just uninstall it and install new site.
Who is your partner or friend paying for hosting currently?
Forum: Fixing WordPress
In reply to: Cancel hosting and domain transferthis is the domain name registrar…speak to them 🙂 http://www.123-reg.co.uk
Forum: Fixing WordPress
In reply to: Cancel hosting and domain transferHave a look at this page if you still get stuck you can chat to theese guys who do my hosting: http://www.web2web.co.za and they can assist you. http://en.support.wordpress.com/moving-a-blog/
Forum: Fixing WordPress
In reply to: Need to Add a Widget Area Below BannerNo luck, i tried to implement this and just caused more problems 🙁 I followed it step by step but no luck. Any further suggestions?
Forum: Fixing WordPress
In reply to: Need to Add a Widget Area Below BannerHiya, thats great. Thank you, will have a look now.