Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Hi DevelopColorVila!

    I’ve installed Colorshop and done the loop adjustment (correctly I hope), but its not lining up properly.

    What do I need to do to fix?

    Thanks a mil!
    warren

    http://ivonakleinova.com/shop/

    Hello… and help! I’m getting same error at http://www.seedmedia.co.za – which occurred after BuddyPress support created a custom.php for the plugin to help with alignment issue.

    Now I’m getting white screen when I try log in.

    Any pointers?

    The buatp.template.custom.php reads:

    <?php
    
    /**
     * BuddyPress - Members Directory
     *
     * @package BuddyPress
     * @subpackage bp-default
     */
    get_header( 'buddypress' ); ?>
    
    	<?php do_action( 'bp_before_directory_members_page' ); ?>
    <div id="page-title">
            	<div id="page-title-inner">
                    <div class="title">
                    <h1>
                        <?php _e( sprintf('%1s Directory',ucfirst( buatp_get_dir_name())), 'buddypress' ); ?>
    
                    </h1>
            </div>
        </div>
    </div>
    	<div id="content">
                <div id="content-left">
                    <div class="maincontent" style="float: none">
    		<div class="padder">
    
    		<?php do_action( 'bp_before_directory_members' ); ?>
    
    		<form action="" method="post" id="members-directory-form" class="dir-form">
                            <?php do_action( 'bp_before_directory_members_content' ); ?>
    
    			<div id="members-dir-search" class="dir-search" role="search">
    
    				<?php bp_directory_members_search_form(); ?>
    
    			</div><!-- #members-dir-search -->
    
    			<div class="item-list-tabs" role="navigation">
    
    <ul>
    					<li class="selected" id="members-all"><a>"><?php printf( __( 'All %1s <span>%2s</span>', 'buddypress' ),ucfirst( buatp_get_dir_name()),  bp_get_total_member_count() ); ?></a>
    
    					<?php if ( is_user_logged_in() && bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>
    
    						<li id="members-personal"><a>"><?php printf( __( 'My Friends <span>%s</span>', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a>
    
    					<?php endif; ?>
    
    					<?php do_action( 'bp_members_directory_member_types' ); ?>
    
    </ul>
    			</div><!-- .item-list-tabs -->
    
    			<div class="item-list-tabs" id="subnav" role="navigation">
    
    <ul>
    					<?php do_action( 'bp_members_directory_member_sub_types' ); ?>
    
    					<li id="members-order-select" class="last filter">
    
    						<label for="members-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>
    						<select id="members-order-by">
    							<option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>
    							<option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option>
    
    							<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    
    								<option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
    
    							<?php endif; ?>
    
    							<?php do_action( 'bp_members_directory_order_options' ); ?>
    
    						</select>
    
    </ul>
    			</div>
    
    			<div id="members-dir-list" class="members dir-list">
    
    				<?php locate_template( array( 'members/members-loop.php' ), true ); ?>
    
    			</div><!-- #members-dir-list -->
    
    			<?php do_action( 'bp_directory_members_content' ); ?>
    
    			<?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ); ?>
    
    			<?php do_action( 'bp_after_directory_members_content' ); ?>
    
    		</form><!-- #members-directory-form -->
    
    		<?php do_action( 'bp_after_directory_members' ); ?>
    
    		</div><!-- .padder -->
                    </div>
                </div>
                <?php get_sidebar( 'buddypress' ); ?>
    	</div><!-- #content -->
    
    	<?php do_action( 'bp_after_directory_members_page' ); ?>
    
    <?php get_footer( 'buddypress' ); ?>

    [Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use the pastebin. As it stands, your code has been permanently damaged/corrupted by the forum’s parser.]

    Forum: Fixing WordPress
    In reply to: White Screen

    Thanks, I tried that and the kitchen sink.

    Review still shows up blank, which means its not importing css from parent, right? activating means white screen of death…

    Now trying with my main domain http://www.seedmedia.co.za

    Parent:
    /*
    Theme Name: Vulcan
    Theme URI: http://www.indonez.com/
    Description: Minimalist Business WordPress Theme 4
    Author: Indonez
    Author URI: http://themeforest.net/user/indonez
    Version: 2.4
    */

    /* Default styles */
    @import “custom.css”;

    Child:

    /*
    Theme Name: vulcan-child
    Description: vulcan-child
    Author: sunray
    Template: vulcan
    */
    @import url(“../vulcan/style.css”)

    Might it have something to do with parent vulcan’s custom css????

    http://pastebin.com/cD03t7Xz

    as in:

    <?php require_once( ‘../../../../wp-load.php’ );?>

    <?php

    $vulcan_style = get_option(‘vulcan_style’);
    $custom_css = get_option(‘vulcan_custom_css’);
    $custom_body_text = get_option(‘vulcan_custom_body_text’);

    Forum: Fixing WordPress
    In reply to: White Screen

    @charset “UTF-8”;
    /* CSS Document */

    /*
    Theme Name: vulcancorp
    Theme URI: http://www.seedcorporatemedia.co.za
    Description: child theme for Vulcan
    Author: sunray
    Author URI: http://www.seedcorporatemedia.co.za
    Template: vulcan
    Version: 1.0
    */
    @import url(“../vulcan/style.css”);

    */

    It might be a vulcan thing. Awaiting their response…

    Forum: Fixing WordPress
    In reply to: White Screen

    Okay, started from scratch and followed instructions to the T. But, again, when reviewing child theme, its white blank. do i need to tell the parent how to treat the naughty child?

    Forum: Fixing WordPress
    In reply to: White Screen

    Okay, will keep this in mind when going through the steps again (for child theme). Thanks again.

    Forum: Fixing WordPress
    In reply to: White Screen

    too much hassle. backing up older version and very carefully trying the child theme steps again…

    Thanks…

    Forum: Fixing WordPress
    In reply to: White Screen

    thanks for your suggestions!

    No white spaces.

    there wasn’t an admin-functions in the child before, only a modified style.css file.

    But I followed the road using the bug reporter until I’d imported pretty much all the vulcan files into the child directory.

    the remaining error is: Fatal error: Cannot redeclare optionsframework_add_admin() (previously declared in /usr/www/users/seedmmpyww/seedcorporatemedia.co.za/wp-content/themes/vulcan-child1/functions.php:40) in /usr/www/users/seedmmpyww/seedcorporatemedia.co.za/wp-content/themes/vulcan/functions.php on line 59

    Lost I am…

    Forum: Fixing WordPress
    In reply to: White Screen

    Hi Esmi and co!

    I carefully followed the steps to instal a child theme, but when I activated it came up blank. Now the blank is everywhere.

    http://www.seedcorporatemedia.co.za

    I deleted the child theme directory, but that didn’t solve the problem. What about deleting the hta file?

    What’s the best way to get admin back again?

    Thanks in advance!

    Hi!
    I’m new to WP and have basic knowledge of html and php.
    I’ve got main domain http://www.seedmedia.co.za and in its sub folder http://www.seedcorporatemedia.co.za

    Because I’m modifying the look of the sub domain (both use same theme), I decided to do a separate instal of wp in sub domain folder linked to its own database (imported from an earlier version of http://www.seedmedia.co.za).

    Trouble is that when I try login using http://www.seedcorporatemedia.co.za/wp-login.php it rejects new username and password and bounces me to wp login for main site.

    Any pointers would be greatly appreciated.

    Kindly,
Warren

    Hi!

    I’m new to WP and have basic knowledge of html and php.

    I’ve got main domain http://www.seedmedia.co.za and in its sub folder http://www.seedcorporatemedia.co.za

    Because I’m modifying the look of the sub domain (both use same theme), I decided to do a separate instal of wp in sub domain folder linked to its own database (imported from an earlier version of http://www.seedmedia.co.za).

    Trouble is that when I try login using http://www.seedcorporatemedia.co.za/wp-login.php it rejects new username and password and bounces me to login for main site.

    Any pointers would be greatly appreciated.

    Kindly,
    Warren

    Forum: Hacks
    In reply to: map wp-admin as a subdomain

    Hi,

    I’m relatively new to wp and have basic knowledge of html and php.

    I’ve got main site http://www.seedmedia.co.za and sub domain http://www.seedcorporatemedia.co.za

    Because I want to modify the look of the sub domain site, I tried separate instals, each having own database.

    However, when I try wp-login to sub-domain it rejects password and kicks me to main domain wp-login.

    Any advice would be greatly appreciated.

    Kindly,
    Warren

    Hi,

    I’m relatively new to WP and not a programmer. Have basic knowledge of HTML and php.

    I’ve got a main domain http://www.seedmedia.co.za and sub-domain http://www.seedcorporatemedia.co.za

    Intially I took the MU plugin route, but since I want to modify the look of the sub domain, decided to try having separate instals of wp and separate databases. Trouble is that when try wp-login to the sub-domain, it rejects password and kicks me to wp-login of main domain.

    I tried your modification above, but no help.

    What would you recommend?

    Thanks in advance,
    Warren

Viewing 13 replies - 1 through 13 (of 13 total)