BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 11,731 through 11,740 (of 15,332 total)
  • Author
    Posts
  • in reply to: font shadow #282084
    Steven Zahm
    Keymaster

    @ Jane

    It’s definitely the theme style. It is using white text and text shadows throughout the entire design which the template is inheriting. To override this design for the template add the following to the theme’s custom CSS area or to the end of the theme’s styles.css file:

    #cn-tile-plus .cn-entry {
        font-size: 12px !important;
        text-shadow: none;
        color: #000;
    }
    #cn-tile-plus a {
        color: #000;
    }
    #cn-tile-plus a:hover {
        color: #000;
    }
    #cn-tile-plus .cn-entry .fn {
        font-size: 14px !important;
    }

    Also, since the theme’s font is really narrow, I added a couple styles to increase the font size a bit. Additionally, I suggest using the background gradient shortcode option to lighten the gradient to make the black text easier to or change the #000 in the above styles to another color that better stands out against the gradient.

    Hope that helps!

    in reply to: Custom Template, category_name and Links #282035
    Steven Zahm
    Keymaster

    @ Bree

    No problem! If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    http://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Search On header and more #281957
    Steven Zahm
    Keymaster

    @ Moshe

    A search widget does come with the Widget Pack. If you would like users to enter and maintain their own entry you’ll need the Link extension. No, there are no registration or payment extensions available at this time.

    I hope that helps.

    in reply to: font shadow #281956
    Steven Zahm
    Keymaster

    @ Jane

    Yes, it is private. Unfortunately I still can not see the page. Just judging from the style of the theme, my guess is that the theme is overriding the styles of template. Without being able to see the issue, I will not be able to tell you what the solution is.

    in reply to: using a form plugin to search the directory #281918
    Steven Zahm
    Keymaster

    @ Pieter

    Apologies … I just pinged him again. Hopefully you’ll hear if he’s available or not shortly.

    in reply to: Customizing user's 'Your Directory Entry' form. #281914
    Steven Zahm
    Keymaster

    @ Patricia

    I’ve been hacking away on Form 2.0 for the past few days now and it has received quite a few significant enhancements. I’m actually going to start working on front-end editing today.

    I added two additional snippets. One to remove the bio metabox and another to remove the logo metabox.

    The only way to remove the other fields is to add CSS to the cn-admin.css / cn-admin.min.css files to hide them.

    Sorry, I do not have any more details on the filters at the moment as most are not yet implemented and the one I did, I’m really not happy with so I plan on re-working it.

    Hope that helps.

    And …

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    http://wordpress.org/support/view/plugin-reviews/connections

    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom Template, category_name and Links #281910
    Steven Zahm
    Keymaster

    @ Bree

    Assuming you modding the Default Card template … Change all 4 instances of CN_Card_Template to CN_Custom_Template (or other unique name). Then update the following as needed with your details:

    $atts = array(
    	'class'       => 'CN_Card_Template',
    	'name'        => 'Default Entry Card',
    	'slug'        => 'card',
    	'type'        => 'all',
    	'version'     => '2.0',
    	'author'      => 'Steven A. Zahm',
    	'authorURL'   => 'connections-pro.com',
    	'description' => 'This is the default template.',
    	'custom'      => FALSE,
    	'path'        => plugin_dir_path( __FILE__ ),
    	'url'         => plugin_dir_url( __FILE__ ),
    	'thumbnail'   => 'thumbnail.png',
    	'parts'       => array(),
    	);

    I would not change this line at all … only the tweak the code within the function to meet your needs:

    $template->part( array( 'tag' => 'card', 'type' => 'action', 'callback' => array( $this, 'card' ) ) );
    

    Hope that helps.

    in reply to: font shadow #281908
    Steven Zahm
    Keymaster

    @ Jane

    I’m think you meant to post the password to the page, yes?

    in reply to: How to add the "search box" in a different page #281907
    Steven Zahm
    Keymaster

    @ wctbiz

    The easiest solution is the Widget Pack … it comes with a simple search widget that can be placed into the theme’s sidebar.

    I hope that helps.

    in reply to: I can not edit pages with the cmap plugin active #281837
    Steven Zahm
    Keymaster

    @ Antonio

    I think it is a PHP memory issue. Please see this excellent post which has several ways that can be used to increase the memory. Which method that will work for you will depend on your webhost. I suggest start with the first way on the list and work your way down the list until the issue is resolved. I hope that helps.

Viewing 10 posts - 11,731 through 11,740 (of 15,332 total)