Forum Replies Created

Viewing 28 posts - 41 through 68 (of 68 total)
  • Author
  • in reply to: Remove sidebar for specific post types #60508
     parousia
    Participant

    Thanks for the reply.

    The problem is that in the theme options page under “blog” you can select the Single Post page Layout. However when you change it. It changes it for all post types. I would only like to change the layout for one post type.

    Resume posts(the layout I wish to change) are submitted by users of the site, and its not ideal or possible for them to change it when they create a resume.

    in reply to: unable to log in from home page #59749
     parousia
    Participant

    I’m using wp super cache and I deleted the cache and the issue seems to have fixed itself? Not quite sure what caused it.

    in reply to: unable to log in from home page #59736
     parousia
    Participant

    http://www.cultexposure.com

    Login: test
    pass: Mamiya85

    in reply to: exclamation marks at bottom of site? #59274
     parousia
    Participant
    This reply has been set as private.
    in reply to: Log in after activation page issues #59272
     parousia
    Participant

    Hi thanks for getting back to me.

    I’ve ended up removing the activation process with a plugin and redirecting to home page.

    I’ve also added a confirm email field using some code I found online. To make sure the right email is entered.

    in reply to: search box text #58895
     parousia
    Participant
    This reply has been set as private.
    in reply to: in text link to profile pages and tabs? #48216
     parousia
    Participant

    Thanks a lot for your time and help it all sorted now.

    regarding the buddylinks plugin incase anyone is interested their instructions have a typo instead of bmlink in the shortcode it is bllink e.g.

    COPY CODE
    
    [buddylink bllink="activity" bltext="your activity page"]
    not
    [buddylink bmlink="activity" bltext="your activity page"]
    in reply to: in text link to profile pages and tabs? #47587
     parousia
    Participant
    This reply has been set as private.
    in reply to: transparent main menu on buddypress pages #47076
     parousia
    Participant

    I should perhaps add I’ve replaced the theme files with ones from fontello.

    in reply to: transparent main menu on buddypress pages #47073
     parousia
    Participant

    Hi,

    Thanks for the reply I’ve managed to figure it out. I have one other problem though.

    Ive changed the Icon files and I’ve been adding in new icons using css. However I’m stuck on 2 navbar icons I cant seem to change them?

    The css I’m using is:

    COPY CODE
    .icon-mail-2:after{ content: "\E82C";}
    .icon-search:after{ content: "\E82D";}

    Any help would be greatly appreciated!

    in reply to: Visual composer issue? #45896
     parousia
    Participant

    Whilst waiting for the developer to get back to me I setup the site from scratch on a different domain. I’ve had the same problem again, only this time there’s this message in the dashboard.

    “The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: Visual Composer.”

    I cannot see a way to update visual composer. What should I be doing?

    That’s again for your help, its very much appreciated!

    in reply to: Visual composer issue? #45827
     parousia
    Participant

    Hi!

    Thanks! I’ve been tearing my hair out! For some reason I’ve rolled back to a previous version of the plugin and it hasn’t gone back to working. Is there a way to find out what’s causing the error?

    in reply to: Visual composer issue? #45819
     parousia
    Participant
    This reply has been set as private.
    in reply to: Redirect when adding a profile field #45196
     parousia
    Participant

    Hi, I think I was having a dull moment I’ve figured it out.

    Just needed to select browser full dimension in the background override option.

    I have just one last question i replaced echo $speciality . '</br>'; with echo $speciality . ', '; Is there a way to make the last entry end either with a . or nothing at all?

    in reply to: Report Plugin Incompatibility #45185
     parousia
    Participant

    Ultimate vc addons. Cant get enable overlay and transparency working on the effect tab in row settings.

    Also having problems with the background tab in row settings which has been useful in setting background images to “cover” on other themes.

    in reply to: Redirect when adding a profile field #45165
     parousia
    Participant

    Thanks very much that fixed it!

    I’m currently achieving a large image by using revolution slider as seen on this page (http://cultexposure.com/). However this has a few draw backs and would like to be able just to select a background image on the row and have it cover the page. custom css like “background-size: cover;” doesnt seem to work?

    in reply to: Redirect when adding a profile field #45143
     parousia
    Participant

    Also is it possible to set the background image of a row to cover. So it not only goes full width but fills the height of the page? Would really like to do this without using revolution slider.

    in reply to: Redirect when adding a profile field #45136
     parousia
    Participant

    Thanks for the code sharmstr but unfortunately its still displaying the multiselect box answers as “array” Is there a way to stop this?

    in reply to: Redirect when adding a profile field #45015
     parousia
    Participant

    Hi I’ve followed the steps but its still displaying “array” for the speciality field (which is a multi select box). Theyre also both now on the same line as each other. How do I display them on different lines? Thanks for your help.

    COPY CODE
    
    		<?php
    
    			add_action( 'bp_profile_header_meta', 'display_user_role' );
    			function display_user_role() {
    				echo '';
    				$args = array(
    					'field'   => 'role', // Field name or ID.
    					 );
    				bp_profile_field_data( $args );
    			} 
    			
    			add_action( 'bp_profile_header_meta', 'display_user_speciality' );
    			function display_user_speciality() {
    				echo '';
    				$args = array(
    					'field'   => 'speciality', // Field name or ID.
    					 );
    				bp_profile_field_data( $args );
    			} 			
    			
    		 do_action( 'bp_profile_header_meta' );
     
    		 ?>
    
    in reply to: Redirect when adding a profile field #44998
     parousia
    Participant

    Hi Thanks for the quick reply.

    The issue seems to have resolved itself? Maybe a cookie problem?

    I also have one other issue which I was going to start a thread for but in the member header I’ve added this code before the close of item meta:

    COPY CODE
            <div id="member_profile">
            	<div class="profile_fields"><span><?php bp_profile_field_data( 'field=Role' );do_action( 'bp_before_member_header_meta' );?></span></div>
                <div class="profile_fields"><span><?php bp_profile_field_data( 'field=Speciality' );do_action( 'bp_before_member_header_meta' );?></span></div>         
            </div>

    However its displaying the speciality field as an “array”? How do i get it to display as text?

    see the link as an example http://cultexposure.com/members/lauriedugdale/profile/

    Thanks again for your help

    in reply to: Redirect when adding a profile field #44950
     parousia
    Participant

    This problem also extends to deleting plugins?

    in reply to: Redirect when adding a profile field #44945
     parousia
    Participant
    This reply has been set as private.
    in reply to: Keep socket and footer at bottom? #43749
     parousia
    Participant
    This reply has been set as private.
     parousia
    Participant
    This reply has been set as private.
     parousia
    Participant
    This reply has been set as private.
     parousia
    Participant
    This reply has been set as private.
     parousia
    Participant
    This reply has been set as private.
     parousia
    Participant
    This reply has been set as private.
Viewing 28 posts - 41 through 68 (of 68 total)

Log in with your credentials

Forgot your details?