Forum Replies Created
-
Author
-
AnchoraParticipantAnchoraParticipant
That was exactly what i tried!
(in style.css and responsive.css)@media only screen
and (min-device-width : 320px)
and (max-device-width : 768px) {
ul.button-group { margin-top: -30px !important; }
}does not work..
AnchoraParticipantwhat I’ve found out now:
this problem only appears with firefox.
in chrome it works.AnchoraParticipanti have a bavarian translation available!
but thats not really german, in fact… πAnchoraParticipantThought it could conflict with Totalcache, but thats not so.
Any solution?
in /groups/single/admin.php the code is present, but it doesnt appear in the final sourcecode of the page.
AnchoraParticipantstrangewise, the php in “div class=”action”” is present,
but in the sourcecode this div is empty!
– so its no styling-issue..really weird^^
AnchoraParticipantmake your addys equal in entire wordpress.
change your letmail to datelite..
first try^^AnchoraParticipantno activation mail for me.
also wrong data when trying to login.theres no activation-page, so did you define one in buddypress-settings/pages?
ps.
the lover on your landingpage looks like rick from walking-dead.. strange sensation.. πAnchoraParticipantyes, that was what i tried..
added a sidebar/display.none to all sizes lower than 768 in responsive.css
but that doesn’t work^^AnchoraParticipant#1 – already done
#2 – already done
#3 – gave the k.o., because older paths wouldn’t work then..will delete the crumbs + get a menu there instead^^
thankyou.
AnchoraParticipantCTRL+F
then search for
.sectionchange “40px 0”
to “40px 0 0 0”how did you manage to install the system???
XDAnchoraParticipanthi yesh!
I would try editing this way:
app.css / line 371
.section { padding: 40px 0 0 0; }
ADMIN EDIT:
Replacing theme original files is not advised. to add your custom css you can enable the child theme and add your style to sweetdate-child/style.cssAnchoraParticipantwhich of the js-files would that be to exclude?
actually even the js-minify is turned off, only combine-css is on!
and because its running in chrome, i thought it has to be a cdn-problem…
ps.
your acc is still active, if you’d like to have a look.. πAnchoraParticipantthe hack-version:
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
… I DID remember… π
AnchoraParticipantHere is what we did:
Restriction for ALL logged out users!
(put that on top in the childs functions.php)add_action( ‘wp’, ‘custom_lockdown_redirect’, 3 );
function custom_lockdown_redirect(){
global $wp;
if (!is_user_logged_in()){
if ( bp_is_activation_page()
|| bp_is_register_page()
|| is_page_template( ‘endfit-custom.php’ )
|| ( in_array( $GLOBALS[‘pagenow’], array( ‘wp-login.php’ )))
)
return;
bp_core_redirect(get_option(‘siteurl’) . “/register”);
exit;
}
}so in buddypress, the registrationpage has to be named “register”, by that way you also omit the modal-popup-registrationform, all logged out users have the (second + real) registrationpage immediately.
only problem is, that the landingpage has to be redesigned… which should be easy, especially with the kleo-shortcodes…
maybe this helps! π
(found once on wpmu, if i remember right..)
AnchoraParticipantCodestylingLocalization works for me, though not through the childtheme, so try putting the languagefiles into the sweetdate/languages.
Also if CL wont work, then try PoEdit locally!AnchoraParticipantthanks a lot, i appreciate this! π
(+ beyond that YOUR work is fabulous too!)
πmaybe i have located the issue?
there are the bp-core settings:
wp-settings >> bp >> pages >> registeris there any shortcode or so, that has to be in it?
actually in bp it is empty, but does this have to be contented for this theme?thats the only idea i have about this!
(of course i checked your demoversion, but i had no clue about it)thanks for your patience, again.
hope i can spare you some time by answering some of the easier questions in the forum!
πbless!
AnchoraParticipantWell, “griasdi” IS the homepage!
Thats with the Front-page-template and the kleo-shortcodes in it! (copy/paste from the documentation)AnchoraParticipantyes, i have a restriction for all logged-out-users.
but testwise i deleted this from the functions.php – and it also did not work!will delete this – and see the same result!
(its deleted now)
anyway i dont even need those further profile-details!
base-section is enough!AnchoraParticipant+ for further insight this might help:
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
π -
AuthorPosts