Forum Replies Created
-
Author
-
August 22, 2016 at 15:19 in reply to: Importing Forum to BuddyApp from WordPress Site using BuddyPress & bbPress #133370
Radu
ModeratorHi,
personally, I did not need to move bb press or WP (Bridge) to another wp installation so I cannot provide the exact steps to follow for your situation, but from my point of view I recommend you copy all installation then clean-up….. then install the buddyapp theme and you are fine.
There are my suggested strategy.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorSee this video guide how to can control that menu area : https://drive.google.com/file/d/0Bxo5b6iHWRMwb2hBcUhPalYxVmc/view
Horizontal menu guide : https://drive.google.com/file/d/0Bxo5b6iHWRMwTFZIZm9yekNNNkk/view
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 22, 2016 at 15:04 in reply to: Change width of content container when site is set to full width #133365Radu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIphone + Chrome,
Do you have solved the problem ?
See the screenshot
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi, You can hide footer on mobile using this css@media (max-width:680px) { div#footer { display: none !important; } }The css will be added to wp-admin -> theme options -> general settings -> quick css Cheers R.Radu
ModeratorHi,
You can control the post meta settings from wp-admin -> appearance -> blog -> Display Meta Fields
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 20:12 in reply to: Importing Forum to BuddyApp from WordPress Site using BuddyPress & bbPress #133233Radu
ModeratorHi,
This it seems to be not a theme problem.
Please check the bbpress docs about this : https://codex.bbpress.org/getting-started/importing-data/import-forums/custom-import/
Why you have copied entire old install and to use it in the new site with the new theme ?
Yoy can do with one of those plugins :
https://wordpress.org/plugins/duplicator/
https://wordpress.org/plugins/wp-clone-by-wp-academy/Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This is not possible to choose what fonts want to have in vc elements, you can use this method : https://archived.seventhqueen.com/forums/topic/how-can-register-japanese-font
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 20:06 in reply to: New users automatically free member level (bypass membership-level page) #133231Radu
ModeratorHi,
the single quick solution that we have to provide it’s this :
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( pmpro_url() ); } } }Using this, the member when it signup will be locked in the membership page and it should choose a package to can use the website
The snippet will be pasted in wp-content/themes/kleo-child/functions.php
NOTE : The Kleo Child Theme needs to be installed and activated.
If you want anything else adapted for your needs start a collaboration with a developer.
Ceeers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 20:02 in reply to: Main Menu no longer right justified after update from Kleo 4.0.8 to 4.1.2 #133229Radu
ModeratorHi,
just choose the right header style from wp-admin -> theme options -> header options ->
Play with header styles until you see your desired style
Let me know
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this css to wp-admin -> theme options -> general settings
COPY CODEli.shop-drop .quick-view.hover-tip { display: none !important; }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 19:50 in reply to: Change width of content container when site is set to full width #133226Radu
ModeratorHi,
Using this css
COPY CODE@media (min-width: 1440px) { .container { max-width: 1440px !important; } }R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorProvide admin credentials
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The author avatar URL is’ not saved into a meta, so it’s no possible…
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 19:08 in reply to: Specific profile field translation with WPML not working #133220Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
Please provide admin credentials to do that for you and I will record the steps.
You should create a new menu and to assign the Top Right Header Menu position then you should add the menu items from BuddyPress and assign an icon for each and also you can add any other menu items to your menu.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorFor me the link it works,
I will attach a photo
COPY CODEfunction add_custom_field() { bp_member_profile_data( 'field=Heading' ); } add_action( 'bp_directory_members_item', 'add_custom_field');Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorNo problem
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorNo problem
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please add this code to htaccess : http://stackoverflow.com/a/19852475
I saw this error in the console log
XMLHttpRequest cannot load http://friendmiles.com/activity/. No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://www.friendmiles.com’ is therefore not allowed access.
Navigated to http://www.friendmiles.com/wp-admin/nav-menus.php?menu=113Let me know after you do that also a ftp will be helpful
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve logged in with the account that you have provided and when i click to online members I’m not redirected to home, I’m directed to the profile that i click to it.
Maybe you have cache issues ? I know that on wp engine it’s a cache level on the server when you work on the website keep that off it can cause issues.
Let me know if you have solved, if no please make a video to can see exact steps to follow it.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 19, 2016 at 16:13 in reply to: Historical comments dissapear when option to add new comments closed #133197Radu
ModeratorI will mark this as resolved, these days an update will come
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorBoth pages it looks the same on mobile, the text it’s different, there is no theme problem
If you still think that it’s a theme problem please do some screenshots etc to can figure out
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You should have low-medium PHP/HTML skills to can do that
Here it’s a typical example
COPY CODE<?php bp_member_profile_data( 'field=name' ); bp_member_profile_data( 'field=city' ); bp_member_profile_data( 'field=email' ); bp_member_profile_data( 'field=city' ); ?>Similar :
https://archived.seventhqueen.com/forums/topic/how-to-show-extended-profile-field-value-programatically
https://archived.seventhqueen.com/forums/topic/members-carousel-discovery-pageCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This is the strategy that the third party plugins are doing to can get direct customers if you hover a slider item from that link you will see the download icon + link if you really want to have direct customer benefits buy a licence!
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 18, 2016 at 20:07 in reply to: Specific profile field translation with WPML not working #133084Radu
ModeratorNot marked as solutionRadu
ModeratorYes, they can be styled with CSS but when you do the structure add a class for every element to can control it better.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
the menu will appear after you login, there is a user menu.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts