-
Author
-
March 2, 2016 at 14:02 #107995DeniTTParticipant
Hi, is there a way built in FB login/register button can be put as a shorthcode on homepage? I dont want the rest form fields, just the FB button.
If no current pre built option available, could you please assist with some code snippets to add it?
Regards
March 2, 2016 at 19:07 #108058RaduModeratorHi,
Please add this snippet to your wp-content/themes/kleo-child/functions.php
COPY CODEif (!function_exists('kleo_fb_button_shortcode')) : function kleo_fb_button_shortcode() { $output = ''; if ( sq_option( 'facebook_login', 0 ) == 1 && get_option( 'users_can_register' ) && !is_user_logged_in() ) { $output .= '<a href="#" class="kleo-facebook-connect btn btn-default "><i class="icon-facebook"></i> ' . __("Log in with Facebook", 'kleo_framework') . '</a>'; } return $output; } add_shortcode('kleo_fb_button', 'kleo_fb_button_shortcode'); endif;
Then add in what page do you want homepage or any page this shortcode
[kleo_fb_button]
Of course this will be displayed only for logged out users.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 3, 2016 at 18:11 #108314RaduModeratorYou’re welcome
Don’t forget to rate our theme 5 stars on Themeforest since it will really help us.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 10, 2016 at 00:42 #115452andrea_pgParticipanthi, i need the same but not works with sweetdate theme, i added code in wp-content/themes/sweetdate-child/functions.php and [kleo_fb_button] in home page. please could you help me?
April 11, 2016 at 15:54 #115646RaduModeratorHi,
The snippet is for Kleo theme not for sweet
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 11, 2016 at 16:24 #115665andrea_pgParticipanthi, tx for reply, i need to create the facebook button login in sweet, you advice me to create a new ticket?
April 11, 2016 at 19:23 #115771RaduModeratorYEs it will be better
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 14, 2016 at 17:27 #121789shaanbahraParticipantHello,
I created the FB app… it s live and works fine as on developer.facebook.
BUT when i put the app ID in the Misc and save it disappears and thus the FB button is also not visible!
How to fix this?May 16, 2016 at 19:33 #121897RaduModeratorHi,
Please add this code to wp-content/themes/kleo-child/functions.php
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
Note : child theme needs to be installed and active
Then change some settings in theme options and press save and check if the changes applies
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.