maddogmcewan
Forum Replies Created
-
Shop Title Update ErrorSlug already exists – is what i get on frontend when trying to save form on shop settings…. yet if i try to go to the page eg https://thebuzz.co.za/rep/aidanharper i get Oops! That page can’t be found.
I have switched theme to 2015 standard – still no luck – all i can do now is try woocommerce version 2.3.1
will do – just to let u know
Was on 2.4.13 till last night as i hoped it may fix things to upgrade to 2.5.
Hace tried step 2 as well, shop settings is working now, but as i said the bit that does not work is it does not save the shop name or shop sluf from both backend and frontend.
I also read in other posts that role plugins that allow admin to assign multiple roles to a user caused conflict – i have Members installed, but i deactivated that and made sure users just have vendor as a role (dc_vendor) – but still no luck
Have saved the permalinks twice. Next step is use default theme i guess. I am using DW Storefront
Forum: Plugins
In reply to: [BuddyPress Groups Extras] No Extras on Admin…i have same issue
I used facebook terminology as people are more familiar to it, I found the original plugin’s descriptions a bit confusing….
- so common contacts become mutual friends
- Random friends of your friends you might know becomes People you may know
- You have most common friends with these users becomes Most of your friends are mutually connected to these people
@hope mmmm – mine says either Add Friend, Friendship Pending or Cancel Friendship Request – I guess its’ relevant to your theme
I have this issue as well – data exists but not showing any full name username in Buddypress… no translations here – all english
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Widget – Show only Custom Post Type?Just looking at that – what i have is a book plugin with a list of Booksm as a custom post type, also places (locations) and last Movies – all are custom post types.
I wanted a widget to show top rated books in one widget, top places in one widget and top movies in one widget
Is this possible?
yeeeeeeeeeaaaaaa – yep that worked 100% – full stars to you !!! tx man
i managed to ge the fb icon to show now as well, but not linkedin, by replacing the front.css file as suggested to another thread here
website url = https://mysocial.buzz
Forum: Plugins
In reply to: [WordPress Social Login] Not importing user contactsme too, seems after last update this part stopped working on all providers
BRILLIANT !!!!!!!!!!!! worked like a char, !!!! Really really appreciated Miles !!!! Thank you
Hi Miles thank you – Have now added the code as test on line 899 in wsl.authentication as for some reason it wont hook via themes function
For anyone interested Gabriel from myCRED is also trying to assist at https://mycred.me/support/forums/topic/help-please-trying-to-create-hook-in-to-wordpress-social-login/#post-10650
// HOOKABLE: any action to fire right after a user created on database do_action( 'wsl_hook_process_login_after_create_wp_user', $user_id, $provider, $hybridauth_user_profile ); //greg add hook to mycred ************************************************************************************ $type = 'FragPoint'; //update_user_meta($user, 'signup_date', current_time('mysql')); if ( function_exists( 'mycred_add' ) ) mycred_add( 'registration', $user_id, 100, 'FragPoints for registering via Steam', 0, 0, $type ); //mycred_add( 'Steam Registration', $user, 100, 'FragPoints for registering via Steam!', '', '', $type); //}
yeppo !!! worked like a charm
i just had to change
$steam_uid_64 = $hybridauth_user_profile->identifier;
to
$steam_uid_64 = str_replace("https://steamcommunity.com/openid/id/", "", $steam_uid_64);
will do the buddypress friend thing now and let you know
aaah tx @miled – will give this a go – let you know – many thanks indeed
Forum: Plugins
In reply to: [WordPress Social Login] Want to help? STEAM login improvementmy updated steam.php – pull full avatar and extra info
but still on v2.1.6<?php class Hybrid_Providers_Steam extends Hybrid_Provider_Model_OpenID { var $openidIdentifier = "https://steamcommunity.com/openid"; /** * finish login step */ function loginFinish() { parent::loginFinish(); $uid = str_replace( "https://steamcommunity.com/openid/id/", "", $this->user->profile->identifier ); if( $uid ){ $data = curl_gets_url( "https://steamcommunity.com/profiles/$uid/?xml=1" ); $data = @ new SimpleXMLElement( $data ); if ( ! is_object( $data ) ){ return false; } $this->user->profile->displayName = (string) $data->{'steamID'}; $this->user->profile->photoURL = (string) $data->{'avatarFull'}; $this->user->profile->description = (string) $data->{'summary'}; $this->user->profile->region = (string) $data->{'location'}; $realname = (string) $data->{'realname'}; if( $realname ){ $this->user->profile->displayName = $realname; } $customURL = (string) $data->{'customURL'}; if( $customURL ){ $this->user->profile->profileURL = "https://steamcommunity.com/id/$customURL/"; } // restore the user profile Hybrid_Auth::storage()->set( "hauth_session.{$this->providerId}.user", $this->user ); } } } function curl_gets_url( $curl_url ){ $ch = curl_init(); $curl_options = array( CURLOPT_URL => $curl_url, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 3, CURLOPT_TIMEOUT => 10 ); curl_setopt_array($ch, $curl_options); $data = curl_exec($ch); return $data; }