-
DD
KeymasterJanuary 18, 2018 at 15:48 in reply to: Change shortcodes<ul class="tabs-nav tabs-nav-members"> <li class="nav-one"><a href="#popular" class="current"><?php esc_html_e('Popular', 'cinematix'); ?></a></li> <li class="nav-two"><a href="#active"><?php esc_html_e('Active', 'cinematix'); ?></a></li> <li class="nav-three"><a href="#alphabetical"><?php esc_html_e('Alphabetical', 'cinematix'); ?></a></li> <li class="nav-four"><a href="#newest"><?php esc_html_e('Newest', 'cinematix'); ?></a></li> <li class="nav-five"><a href="#online"><?php esc_html_e('Online', 'cinematix'); ?></a></li> </ul><div id="active" class="hidden-tab"> <?php if ( bp_has_members( 'type=active&max=' . $number_of_members . '' ) ) : ?> <?php while ( bp_members() ) : bp_the_member(); ?> <a href="<?php bp_member_permalink() ?>" class="shortcode-member-item" title="<?php bp_member_name(); ?> (<?php bp_member_last_active(); ?>)"><?php bp_member_avatar('type=full&width=150&height=150') ?></a> <?php endwhile; endif; ?> </div> <div id="alphabetical" class="hidden-tab"> <?php if ( bp_has_members( 'type=alphabetical&max=' . $number_of_members . '' ) ) : ?> <?php while ( bp_members() ) : bp_the_member(); ?> <a href="<?php bp_member_permalink() ?>" class="shortcode-member-item" title="<?php bp_member_name(); ?> (<?php bp_member_last_active(); ?>)"><?php bp_member_avatar('type=full&width=150&height=150') ?></a> <?php endwhile; endif; ?> </div> <div id="newest" class="hidden-tab"> <?php if ( bp_has_members( 'type=newest&max=' . $number_of_members . '' ) ) : ?> <?php while ( bp_members() ) : bp_the_member(); ?> <a href="<?php bp_member_permalink() ?>" class="shortcode-member-item" title="<?php bp_member_name(); ?> (<?php bp_member_last_active(); ?>)"><?php bp_member_avatar('type=full&width=150&height=150') ?></a> <?php endwhile; endif; ?> </div> <div id="online" class="hidden-tab"> <?php if ( bp_has_members( 'type=online&max=' . $number_of_members . '' ) ) : ?> <?php while ( bp_members() ) : bp_the_member(); ?> <a href="<?php bp_member_permalink() ?>" class="shortcode-member-item" title="<?php bp_member_name(); ?> (<?php bp_member_last_active(); ?>)"><?php bp_member_avatar('type=full&width=150&height=150') ?></a> <?php endwhile; endif; ?> </div>DD
KeymasterJanuary 18, 2018 at 15:47 in reply to: Change shortcodesHello,
All shoultcodes are in this file – wp-content/plugins/cinematix-shortcodes/cinematix-shortcodes.php
1. You should remove following code lines:
<div id="object-nav"> <ul class="tabs-nav"> <li class="nav-one"><a href="#popular" class="current"><?php esc_html_e('Popular', 'cinematix'); ?></a></li> <li class="nav-two"><a href="#active"><?php esc_html_e('Active', 'cinematix'); ?></a></li> <li class="nav-three"><a href="#alphabetical"><?php esc_html_e('Alphabetical', 'cinematix'); ?></a></li> <li class="nav-four"><a href="#newest"><?php esc_html_e('Newest', 'cinematix'); ?></a></li> </ul> </div><!-- NEWEST GROUPS LOOP START --> <?php if ( bp_has_groups( 'type=newest&max=' . $number_of_groups . '' ) ) : ?> <ul id="newest" class="hidden-tab"> <?php while ( bp_groups() ) : bp_the_group(); ?> <li> <div class="group-box"> <div class="group-box-image-container"> <a class="group-box-image" href="<?php bp_group_permalink() ?>forum"><?php bp_group_avatar( 'type=full' ) ?></a> </div> <div class="group-box-info"> <div class="group-box-details"> <div class="group-box-name"><a href="<?php bp_group_permalink() ?>forum"><?php $grouptitle = bp_get_group_name(); $getlength = strlen($grouptitle); $thelength = 13; echo mb_substr($grouptitle, 0, $thelength, 'UTF-8'); if ($getlength > $thelength) echo "..."; ?></a></div> <div class="group-box-members-count"><?php bp_group_member_count(); ?></div> </div> </div> </div><!--group-box ends--> </li> <?php endwhile; ?> </ul> <div class="clear"></div> <?php do_action( 'bp_after_groups_loop' ) ?> <?php else: ?> <ul id="newest" class="hidden-tab"> <div id="message" class="info"> <p><?php esc_html_e( 'There were no groups found.', 'buddypress' ) ?></p> </div><br /> </ul> <?php endif; ?> <!-- NEWEST GROUPS LOOP END --> <!-- LAST ACTIVE GROUPS LOOP START --> <?php if ( bp_has_groups( 'type=active&max=' . $number_of_groups . '' ) ) : ?> <ul id="active" class="hidden-tab"> <?php while ( bp_groups() ) : bp_the_group(); ?> <li> <div class="group-box"> <div class="group-box-image-container"> <a class="group-box-image" href="<?php bp_group_permalink() ?>forum"><?php bp_group_avatar( 'type=full' ) ?></a> </div> <div class="group-box-info"> <div class="group-box-details"> <div class="group-box-name"><a href="<?php bp_group_permalink() ?>forum"><?php $grouptitle = bp_get_group_name(); $getlength = strlen($grouptitle); $thelength = 13; echo mb_substr($grouptitle, 0, $thelength, 'UTF-8'); if ($getlength > $thelength) echo "..."; ?></a></div> <div class="group-box-members-count"><?php bp_group_member_count(); ?></div> </div> </div> </div><!--group-box ends--> </li> <?php endwhile; ?> </ul> <div class="clear"></div> <?php do_action( 'bp_after_groups_loop' ) ?> <?php else: ?> <ul id="active" class="hidden-tab"> <div id="message" class="info"> <p><?php esc_html_e( 'There were no groups found.', 'buddypress' ) ?></p> </div><br /> </ul> <?php endif; ?> <!-- LAST ACTIVE GROUPS LOOP END --> <!-- ALPHABETICAL GROUPS LOOP --> <?php if ( bp_has_groups( 'type=alphabetical&max=' . $number_of_groups . '' ) ) : ?> <ul id="alphabetical" class="hidden-tab"> <?php while ( bp_groups() ) : bp_the_group(); ?> <li> <div class="group-box"> <div class="group-box-image-container"> <a class="group-box-image" href="<?php bp_group_permalink() ?>forum"><?php bp_group_avatar( 'type=full' ) ?></a> </div> <div class="group-box-info"> <div class="group-box-details"> <div class="group-box-name"><a href="<?php bp_group_permalink() ?>forum"><?php $grouptitle = bp_get_group_name(); $getlength = strlen($grouptitle); $thelength = 13; echo mb_substr($grouptitle, 0, $thelength, 'UTF-8'); if ($getlength > $thelength) echo "..."; ?></a></div> <div class="group-box-members-count"><?php bp_group_member_count(); ?></div> </div> </div> </div><!--group-box ends--> </li> <?php endwhile; ?> </ul> <div class="clear"></div> <?php do_action( 'bp_after_groups_loop' ) ?> <?php else: ?> <ul id="alphabetical" class="hidden-tab"> <div id="message" class="info"> <p><?php esc_html_e( 'There were no groups found.', 'buddypress' ) ?></p> </div><br /> </ul> <?php endif; ?> <!-- ALPHABETICAL GROUPS LOOP END -->DD
KeymasterJanuary 18, 2018 at 15:30 in reply to: video error on mobileHello,
It looks like Buddypress bug. You should raport it here and tell it doesn’t work under a default wp theme – https://codex.buddypress.org/participate-and-contribute/reporting-bugs/
DD
KeymasterJanuary 18, 2018 at 15:25 in reply to: Admin PanelHi,
The link to ACP is here – https://imgur.com/Tzco1JH
Hello admin!
Last visit was: Wed Oct 11, 2017 8:57 am, check New posts, Unread posts and Your posts. [ACP] [MCP]DD
KeymasterJanuary 17, 2018 at 13:01 in reply to: Pages doesn't work when loggedDid you enable all BP components? – http://diaboliquedesign.com/demo/communityjunction/Help/
DD
KeymasterJanuary 17, 2018 at 12:16 in reply to: video error on mobileHi,
Does it work when a default WP theme is active?
DD
KeymasterJanuary 5, 2018 at 10:11 in reply to: Error when deleting postsTry this sollution:
Open styles/unitedforum/template/confirm_delete_body.html
remove everything and paste it – https://pastebin.com/ULb9zb9R
Don’t forget to purge the cache.DD
KeymasterJanuary 4, 2018 at 08:32 in reply to: Error when deleting postsHello,
Do you use 3.2.x version of theme? I see following page – https://imgur.com/kTW36zY
DD
KeymasterJanuary 2, 2018 at 14:05 in reply to: Blog masonryTry to open wp-content/themes/onecommunity/archive.php
remove https://pastebin.com/7PHpCPAi and paste it – https://pastebin.com/MgM6YbDUDD
KeymasterHello,
It looks like buddypress or some bp componen in inactive – http://diaboliquedesign.com/demo/cinematix-theme/Help/assets/components.jpg
DD
KeymasterNew login details are in the txt file of instructions.
-
This reply was modified 8 years ago by
DD.
DD
KeymasterDecember 12, 2017 at 09:59 in reply to: Removing @ from username and a members page has the wrong templateHow do you display a subscribe link? Do you use some plugin?
DD
KeymasterDecember 6, 2017 at 09:06 in reply to: Forum width questionHi,
Use following css:
#bbpress-forums { width: 100%; }DD
KeymasterDecember 1, 2017 at 11:09 in reply to: Cover Image question?Hello,
You can use following css:
.header-title.header-title-profile, .header-title.header-title-group { background-size:100% auto; }Opacity you can modify in the buddypress/css/buddypress.css file:
.transparent-cover { position:absolute; width:100%; height:100%; z-index:0; opacity: 0.6; }
DD
KeymasterUse following css:
.transparent-cover { display:none; }DD
KeymasterNovember 29, 2017 at 10:50 in reply to: BP Portfolio Plugin Error showing in website. Unable to open wp-adminYou should add each product page to safe pages.
DD
KeymasterHi,
This plugin is very popular for paid website access management – https://wordpress.org/plugins/paid-memberships-pro/ So I hope it will resolve your problems.
DD
KeymasterNovember 29, 2017 at 09:33 in reply to: Demo ContentDemo content installation instructions are in the Help/OneClickDemoContentInstallation.txt file. There is few lines of instructions only.
DD
KeymasterNovember 29, 2017 at 09:31 in reply to: BP Portfolio Plugin Error showing in website. Unable to open wp-adminHi,
No issues here.
DD
KeymasterNovember 27, 2017 at 12:10 in reply to: BP Portfolio Plugin Error showing in website. Unable to open wp-adminHi,
It doesn’t look like a theme issue. Try the rtmedia plugin, it’s more popular – https://wordpress.org/plugins/buddypress-media/
DD
KeymasterNovember 27, 2017 at 11:27 in reply to: Removing @ from username and a members page has the wrong templateHello,
1. WP dashboard -> Pages -> Forums page
Most popular topics etc is in the bbpress.php file2. It should be translated when you install buddypress version in your language. Any way you should translate plugin using this pot file wp-content/plugins/buddypress/buddypress.pot
3. Related articles are tags based.
4. You can change it in functions.php
define( 'BP_AVATAR_THUMB_WIDTH', 50 ); define( 'BP_AVATAR_THUMB_HEIGHT', 50 ); define( 'BP_AVATAR_FULL_WIDTH', '150'); define( 'BP_AVATAR_FULL_HEIGHT', '150' );DD
KeymasterUse following css:
.header-title { display:none; } .single-item.groups .header-title, .bp-user .header-title { display:block; }Also is there a way to remove the blue overlay that covers the banner images on profile/group pages?
Are you talking about cover images?
DD
KeymasterNovember 17, 2017 at 20:38 in reply to: OneCommunity Shortcodes PluginHi
You could ask me for demo content installation, I will help you for free.
DD
KeymasterNovember 17, 2017 at 12:56 in reply to: Error Creating Home PageI need FTP login details to fix it, anyway if you want to remove it then open wp-content/plugins/onecommunity-shortcodes/onecommunity-shortcodes.php and remove following codes
https://pastebin.com/XGLUVGBf
https://pastebin.com/2WrhtUEqDD
KeymasterNovember 17, 2017 at 09:41 in reply to: Removing @ from username and a members page has the wrong templateHi,
Remove @ in the members/single/member-header.php file.
And in the members page on of the tabs has a the wrong template.
https://welder.gr/members/dimitris/settings/capabilities/How did you enter this page?
DD
KeymasterNovember 17, 2017 at 09:30 in reply to: Error Creating Home PageThis error was fixed months ago, probably you have old code in child theme. You shouldn’t have filter_where or dd_filter_where code in functions.php
DD
KeymasterNovember 17, 2017 at 09:20 in reply to: OneCommunity Shortcodes PluginI couldn’t initiate wpbakery (gave blank page)
How do you try to initiate it? Generally you should use frontend editor of VC. What php version do you use?
DD
KeymasterFatal error: Cannot redeclare filter_where() (previously declared in /hermes/walnaweb02a/b1173/moo.ewtherapy/wp-content/plugins/onecommunity-shortcodes/onecommunity-shortcodes.php:912) in /hermes/walnaweb02a/b1173/moo.ewtherapy/wp-content/plugins/onecommunity-shortcodes/onecommunity-shortcodes.php on line 912
i have the same problem, how to solve it??? please help
This error was fixed months ago, probably you have old code in child theme.
No answer from DD. The folks at WPBakery can’t help.
I understand your policy is no refund for the theme product. I am unable to get the theme to work and abandoning the effort.
DD, can I get a refund for the extended support (1 year) I bought?
There is 2 days response time – https://themeforest.net/item/onecommunity-buddypress-theme/3713046/support
Also I need time to analyse the problem. You have to check it under themeforest dashboard but I doubt you can get a support refund only.DD
KeymasterNovember 15, 2017 at 21:04 in reply to: customization one communityOpen header.php and paste code with image just after
<?php do_action( 'bp_header' ) ?>paste it
DD
KeymasterYou have to click on the sprocket wheel icon, there are theme options and import button – https://imgur.com/77ESByx
DD
KeymasterYou duplicated plugins – onecommunity-shortcodes_oldold, there should be 1 the same plugin active. Also make sure you are using the latest version of theme – 2.1.1 (19 IX 2017). Disable a child theme if you are using it.
DD
KeymasterHi,
It looks like this notice is not a theme part, as far as I remember the same notice is visible when a default WP theme is active too.
DD
KeymasterDo you see the same problem when a default wp theme is active? Try to paste following code in the .htaccess file:
php_flag display_startup_errors on php_flag display_errors onAlso keep debug mode enabled. Now do you see any error?
DD
KeymasterYou corrupted something in code. Try to remove theme and plugins using files manager. Anyway if there is no any error then there can be 1000 reasons of it.
DD
KeymasterNovember 10, 2017 at 09:26 in reply to: Registration DisabledHello,
You have to activate it under appearance -> customize too.
DD
KeymasterOpen wp-config.php in the root of your wp installation, make following setting
define('WP_DEBUG', true);and post error here.
DD
KeymasterNovember 5, 2017 at 11:36 in reply to: Unable to view wp-adminIt looks like a cache plugin error. Anyway it doesn’t look like a theme issue, you can delete theme using files manager.
DD
KeymasterOctober 16, 2017 at 10:08 in reply to: Pages not showingHi,
Does it work when a default WP theme is active?
DD
KeymasterOctober 14, 2017 at 12:43 in reply to: Login widget customizationI’m sorry, I mean wp-content/plugins/onecommunity-shortcodes/onecommunity-shortcodes.php
DD
KeymasterOctober 14, 2017 at 09:38 in reply to: Login widget customizationHello,
Open wp-content/plugins/sainttown-shortcodes/sainttown-shortcodes.php and paste code before:
<?php do_action( 'bp_after_sidebar_login_form' ) ?>DD
KeymasterOctober 13, 2017 at 14:22 in reply to: Edit Popular Groups WidgetsHello,
Open wp-content/plugins/communityjunction-shortcodes/communityjunction-shortcodes.php and replace
<?php bp_group_permalink() ?>forumfor
<?php bp_group_permalink() ?>in 2 places
DD
KeymasterOctober 11, 2017 at 08:45 in reply to: Map ImageWhen you click on the left grey mini menu then go to advanced tab and increace padding https://imgur.com/G0S7tCF
DD
KeymasterOctober 10, 2017 at 13:32 in reply to: Map ImageHello,
I’m sorry, click on the grey mini menu in left corner.
DD
KeymasterHi,
Paste following code in .htaccess (root)
php_value memory_limit 512MDD
KeymasterHi,
It’s here – https://imgur.com/R8Zagrq
paste all shortcodes under classic mode.DD
KeymasterOctober 10, 2017 at 13:17 in reply to: Remove avatarYou can change it on https://gravatar.com/ or try http://support.diaboliquedesign.com/wp-admin
DD
KeymasterHi,
Settings/manage tab is visible on this page – http://diaboliquedesign.com/demo/onecommunity-theme/groups/music/forum/
DD
KeymasterOctober 10, 2017 at 13:14 in reply to: A Social Network ImageI just replied to your email.
DD
KeymasterOctober 10, 2017 at 13:13 in reply to: Photos do not showIt’s under settings -> discussion -> Show Avatars
DD
KeymasterOctober 9, 2017 at 13:32 in reply to: A Social Network ImageHello,
Home page can be customised by Elementor. Go to pages
DD
KeymasterOctober 9, 2017 at 10:06 in reply to: 12 seconds to entryHello,
Probably it’s caused by weak hosting server becase as you can see on the live demo theme works fine. Try to install some cache plugin like WP Super Cache if you didn’t install it yet. Also try https://www.cloudflare.com/
DD
KeymasterOctober 9, 2017 at 09:55 in reply to: Photos do not showHello,
Is it working when a default WP theme is active? It looks like you disabled avatars under wp dashboard.
DD
KeymasterOctober 6, 2017 at 13:21 in reply to: Sidebar placementYou should open css/bbpress.css and reduce width here:
div#topic-post-list ul>li { padding: 20px 20px; width:711px; div#topic-post-list .topic-content-cell { float:right; width:580px; } table td.forum-head-freshness { width:200px;DD
KeymasterOctober 4, 2017 at 11:30 in reply to: Blog masonryHello,
Go to Blog page and select Blog – Masonry page template under page attributes.
DD
KeymasterOpen header.php and paste following code just before header-very-top div – https://jsfiddle.net/ffhkuv9p/
DD
KeymasterOctober 4, 2017 at 11:14 in reply to: Search AllI think you have to predefine it first, it’s native function of buddypress so you can just go to WP Dashboard -> Users > Profile Fields and test it.
DD
KeymasterOctober 4, 2017 at 10:32 in reply to: Exclude Groups on home pageThis part
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// function communityjunction_bp_groups($atts, $content = null) { extract(shortcode_atts(array( "number_of_groups" => '20', "type" => 'popular' ), $atts)); if ( function_exists( 'bp_is_active' ) ) { ob_start(); ?> <div class="list-wrap shortcode-bp-groups"> <?php if ( bp_has_groups( 'type=' . $type . '&max=' . $number_of_groups . '' ) ) : ?> <ul> <?php while ( bp_groups() ) : bp_the_group(); ?> <li <?php bp_group_class(); ?>> <div class="group-box"> <div class="group-box-image-container"> <a class="group-box-image" href="<?php bp_group_permalink() ?>forum"><?php bp_group_avatar( 'type=thumb&width=100&height=100' ) ?></a> </div> <div class="group-box-bottom"> <div class="group-box-title"><a href="<?php bp_group_permalink() ?>forum"><?php $grouptitle = bp_get_group_name(); $getlength = strlen($grouptitle); $thelength = 22; echo mb_substr($grouptitle, 0, $thelength, 'UTF-8'); if ($getlength > $thelength) echo "..."; ?></a></div> <div class="group-box-details"> <div class="group-box-details-1"><?php printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); ?></div> <div class="group-box-details-2"><?php bp_group_member_count(); ?></div> </div> </div> </div><!--group-box ends--> </li> <?php endwhile; ?> </ul> <div class="clear"></div> <?php do_action( 'bp_after_groups_loop' ) ?> <?php else: ?> <ul id="popular"> <div id="message" class="info"> <p><?php _e( 'There were no groups found.', 'buddypress' ) ?></p> </div> <br /> </ul> <?php endif; ?> <!-- POPULAR GROUPS LOOP END --> </div> <!-- List Wrap --> <div class="clear"></div> <?php } else { echo "Buddypress plugin is inactive"; } $shortcode_content = ob_get_clean(); return $shortcode_content; } add_shortcode("communityjunction-bp-groups", "communityjunction_bp_groups"); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////DD
KeymasterI don’t see any problem when main theme is active – https://s1.postimg.org/9j70uodo6n/activity.gif
I see in editor you have modified 2 activity files.
DD
KeymasterIt’s caused by child theme, it looks like you overwritten some function in the child theme.
DD
KeymasterDD
KeymasterOctober 3, 2017 at 10:20 in reply to: Exclude Groups on home pageYes you can cut it and paste it in the functions.php file.
Also our support with you is running out, we would like to extend but can you do us a discount as we have got the two themes off you previously? We appreciate your efforts.
Well, just leave a 5-stars rating and I will help you for free.
DD
KeymasterHello,
In buddypress member is listed when he will be logged at least once.
DD
KeymasterOctober 2, 2017 at 08:38 in reply to: Search AllI think you should use profile fields – https://codex.buddypress.org/administrator-guide/extended-profiles/
and then install this search plugin – https://wordpress.org/plugins/bp-profile-search/
DD
KeymasterYes, please send me login details via contact form.
DD
KeymasterAlso do you have the same problem when you are logged in and logged out?
DD
KeymasterDo you use the latest verison of Buddypress? Does it work when a default WP theme is active? There can be wp-content/themes/communityjunction/buddypress/js/buddypress.js file corrupted.
DD
KeymasterSeptember 28, 2017 at 08:42 in reply to: Exclude Groups on home pageCan you publish functions.php here – https://pastebin.com/
and post link hereI tested this code once again and no problems here – https://imgur.com/h21c5W4
DD
KeymasterSeptember 28, 2017 at 08:35 in reply to: Sidebar placementWhere are these topics? – https://friendsthroughgrief.com/forums/forum/site-wide-forum
DD
KeymasterSeptember 27, 2017 at 10:21 in reply to: Profile PictureHello,
Check the “Allow registered members to upload avatars” under wp dashboard -> settings -> buddypress -> options
DD
KeymasterSeptember 27, 2017 at 10:01 in reply to: Sidebar placementTry
background-position:76% top;if you want to delete it then remove it:
background-image: url( "images/spacer-v.png" );Thank you! Everything looks good except the topics for my forums. Once you click on a topic to read the thread it looks like some of the content is being cut off to the right.
https://friendsthroughgrief.com/forums/topic/jshd-4I see Not Found
-
This reply was modified 8 years ago by
