Forum Replies Created
-
Author
-
4bservicesParticipant
Yes the fix helped greatly! I wish I could move the image down a bit so that the font aligned with the middle of the hand but I don’t see how that would be possible.
4bservicesParticipantOkay — I just want to make sure I’m understanding this before I go and replace code.
I don’t know what you mean by this:
“Also you need to modify all the links with “register” to go to membership levels page.”
Is the file in that link what does that with the modify all links with register. Or is this two separate tasks I need to complete 1) replace the checkout file with the supplied code you gave in the .txt file 2) modify all links with register to go to the membership level page.
Where would I find all those links so I know I don’t miss any?
4bservicesParticipantFound the message that is created saying they were successful in creating an account and changed it to say they still have more steps before they have created their account.
For now I think that will work till we can figure out a better process for the sign up. Right now it’s just too many steps – way too many steps.
4bservicesParticipantIf I copy that file over to the child it will pull from that correct for any changes?
4bservicesParticipantSo in there I can change the order? That they have to select the membership level BEFORE the email is sent to verify their email????
4bservicesParticipantIn my Firefox it’s showing nice big and bold font. In Chrome it’s “largish” but thin font it’s not bold/heavy. Same thing in Safari it’s thin font.
Attachments:
You must be logged in to view attached files.4bservicesParticipantI just tried myself with a non-admin account and same thing. I clicked on the # that appears above the profile/log out button and when I did the url for a moment showed it was going to go to the messages then it redirected me to the membership pricing table. The account I tried with has the highest level membership that includes private messaging.
4bservicesParticipantSo we tried it and it’s doing the same thing. Sometimes it shows bigger and then after the page loads it goes back to it’s original size.
4bservicesParticipantAnyone have any ideas as everyone that has signed up so far today hasn’t finished signing up and are completely confused. What do we need to make it easier. Do we need to change out a form somewhere or is there a way to make it so that they pick their membership level BEFORE the email is sent out to verify their account?
Anyone know which files I need to edit to add some more directions to the page for them when it says that an email has been sent to them so we can tell them by the way you HAVE to click that email then come back and select your membership level and THEN you can log in.
4bservicesParticipantNo. It’s for all NON admin users that are signed up and get a message when they click on the notification near the profile/log out button it takes them to the membership pricing table.
4bservicesParticipantI was trying to remove all the hearts but keep the matching as well if you read the post earlier I gave all of that code that I’m replacing with the “trachometer” icon.
4bservicesParticipant.icon-heart:before
{
content: “\f0e4″;
}It replaced the heart that appeared when you say moused over an image. It’s a dashboard icon. Now nothing shows just a semi-transparent circle with now icon in it at all.
4bservicesParticipantWe go live on Monday and trying to clean up this process. Does anyone have any suggestions – are we using the forms incorrectly? There seems to be too many steps and it’s CONFUSING for the beta users to even sign up – can’t imagine how it’s going to be for general public.
4bservicesParticipantThe home image is still all weird only showing a tiny corner of the sky – if at all. I didn’t add any widget we just reduced the size of the FB box.
4bservicesParticipantHere is a video I made to try and help people with signing up but it still as WAY too many steps and confusing.
4bservicesParticipantI did take a look at that link and tried the code and nothing happens. When I commented on the thread I was told it was a KLEO topic to post in the SweetDate forum.
I tried everything from 18px to 500px and still the navigation font stayed the same.
July 21, 2014 at 17:15 in reply to: KLEO setting Header height & defining navigation font size. #230764bservicesParticipantSo I added the code back in to the Child stylesheet. I set it at 18px. When I load the page http://jeepedin.com/beta then it is just the TINIEST bit bigger then after the page loads it goes back to it’s normal size.
July 21, 2014 at 17:12 in reply to: KLEO setting Header height & defining navigation font size. #230734bservicesParticipant@Abe I did and nothing happened. I even put it at 56px and 500px and still NOTHING happened.
4bservicesParticipantOkay this worked great however I am using your code found here: https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-site
and now the dashboard icons I had are gone.
Also, I don’t want to remove the matching but just change to a different icon instead of the two little hearts.
IN MY child functions.php
add_action(‘after_setup_theme’,’kleo_my_hearts_actions’);
function kleo_my_hearts_actions()
{
/* disable matching on member profile */
remove_action(‘kleo_bp_before_profile_name’, ‘kleo_bp_compatibility_match’);/* Replace the heart over images */
add_filter(‘kleo_img_rounded_icon’, ‘my_custom_icon’);/* Replace the heart from register modal */
add_filter(‘kleo_register_button_icon’, ‘my_custom_icon_register’);/* Replace the heart from About us widget */
add_filter(‘kleo_widget_aboutus_icon’, ‘my_custom_icon_about_widget’);
}/* Replace the heart with a camera icon function */
function my_custom_icon () {
return ‘tachometer’;
}/* Replace the heart from register modal with a user icon function */
function my_custom_icon_register () {
return ‘tachometer’;
}
/* Replace the heart from about us widget with a user icon function */
function my_custom_icon_about_widget () {
return ‘tachometer’;
}
?>IN THE QUICK CSS
.icon-heart:before
{
content: “\f0e4”;
}4bservicesParticipantWhat if you want to keep the matching system but replace with a different icon instead of the hearts?
4bservicesParticipantOkay I see I need to go into the Sweetdate settings to make it happen.
Whew – I’ve been at this too long and making this harder then it needs to be! Sorry to be a bug.
4bservicesParticipantOkay I got the other fields to show but I can not get the “free” account to go gray.
http://jeepedin.com/membership-account/membership-levels/
http://jeepedin.com/beta (bypass coming soon page)
Here is the code
The membership id for the free level is 2 and the paid is 1 I want the extra fields to show for 2 but want them to be dark for 1
// restrict profile area – Messages page
add_action(‘kleo_pmro_extra_restriction_before_my_profile’,’kleo_my_custom_restrict1′);function kleo_my_custom_restrict1()
{
//full current url
$actual_link = kleo_full_url();
//our request uri
$uri = str_replace(untrailingslashit(home_url()),””,$actual_link);//restrict messaging page url
if(preg_match(“/^\/”.bp_get_members_root_slug().”\/”. bp_get_loggedin_user_username().”\/messages\/?/”, $uri))
{$my_restrictions = array(‘message’ => array(
//2 – restrict certain levels. 0 -restrict none; 1 – restrict all
‘type’ => 2,
//levels that you apply the restrictions to
‘levels’ => array(2,-1),
//’not_member’ => 1, //restrict users without a membership level
//’guest’ => 1 // restrict not logged in users
)
);
//We use the name “message” from the new restriction added above
kleo_check_access(‘message’,$my_restrictions);
}
}//Restrict Shop page
add_filter(‘kleo_pmpro_match_rules’, ‘kleo_my_custom_restrict2’);function kleo_my_custom_restrict2($restrictions) {
//regular expression for shop page
$restrictions[“/^\/shop\/?$/”] = array(‘name’ => ‘shop’);
return $restrictions;
}I don’t need to actually restrict pages I did that else where so di I need to remove some of this code??? But how do I get it to recognize it on the pricing table???
4bservicesParticipantSo I’m trying to find how can I had the groups of “Lifestyle” “Physical” etc so that only those with the paid membership ID 1 can see those fields and fill them out?
Where do I place the code he found to work? functions.php? How do I know the id array of the fields I’m trying to hide?
Thanks.
July 18, 2014 at 23:25 in reply to: KLEO setting Header height & defining navigation font size. #229734bservicesParticipantI have placed
.navbar-nav > li > a {
font-size: 14px;
}In the CSS section – I can change the px to 500 and NOTHING changes. What am I doing wrong? Is there a way to set this font so it’s the same as the other H tags on the site?
4bservicesParticipantIt’s showing like it did before in the header. I also want to make the disclosure “add text there” font smaller then how the copyright text appears. But it’s not showing up right.
4bservicesParticipantI put this in the sweetdate-child functions.php correct? Last time I tried I broke the site and had to reupload a new child theme,
July 17, 2014 at 02:19 in reply to: KLEO setting Header height & defining navigation font size. #227964bservicesParticipantI have tried this code and even put it at 56px for the font size and still nothing changes???
4bservicesParticipantiPad still looks funky on mobile (white area on right down the side of screen, front jeep pic looks really funky only showing sky, the box is squished to the left and cutting off words in boxFB in footer rolling off right side of page, while in Groups the SEARCH FORUMS search button is cut off showing only SEAR , just not fitting on any of the pages).
-
AuthorPosts