• Resolved badincite

    (@badincite)


    Really like the administration side of this project plugin but having some trouble getting it to look right. Any examples or documentation of codex to get embed it into my site? Also how can I get the layout theme inside of wordpress to look like the examples on the wordpress plugin page Screenshots
    My site
    doesn’t even look close?
    I am using the customizr theme with the menus turned off.

    Id like to remove all the menus at the bottom and just display the picture gallery’s and descriptions.

    What I want gone.
    Pages
    Calendar
    Current Job Openings
    File
    Form Test[L]
    Joblist
    Jobs Listing
    Projects
    Projects Test
    Resume
    scheduler
    Archives
    March 2014
    Categories
    Uncategorized (2)

    https://www.ads-software.com/plugins/projects-by-woothemes/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author James Koster

    (@jameskoster)

    Hey,

    Unfortunately it’s not possible to make a plugin work with _all_ WordPress themes out the box. In some cases you’re going to need to do a little custom work.

    We have documentation on making the plugin compatible with third party themes over here.

    Thanks

    Thread Starter badincite

    (@badincite)

    Been diggin through everything getting there two questions

    I havent found where I can move the description found most of the stuff I needed to change in content-project-single.php but dont see where I can drop the description to a new line.

    Single Project

    Next on the project summary page how can I add a thumbnail for the project to the left of it?
    Project List

    Plugin Author James Koster

    (@jameskoster)

    I can drop the description to a new line.

    You can do this with css.

    .single-project.has-gallery .gallery#gallery-1 {
    width: inherit;
    }

    how can I add a thumbnail for the project to the left of it?

    Adding a featured image is all you need to do.

    Thread Starter badincite

    (@badincite)

    Ahh okay that did drop it down to a new line but how can I get the summary all the way to the bottom of the page under everything.

    By featured image do you mean the cover image section? I just did that and nothing appeared.

    Project Index List

    Thread Starter badincite

    (@badincite)

    This action here I guess grabs the descriptoin and meta navigation but I cant find where I can split it.

    <div class="summary entry-summary">
    
    		<?php
    			/**
    			 * projects_single_project_summary hook
    			 *
    			 * @hooked projects_template_single_description - 10
    			 * @hooked projects_template_single_meta - 20
    			 */
    			do_action( 'projects_single_project_summary' );
    		?>
    Thread Starter badincite

    (@badincite)

    Got it!

    Used this code split it up https://wordpress.stackexchange.com/questions/121489/split-content-and-gallery

    Add this to bottom of content-single-project.php

    <div id="wrapper">
    
    		<!--start: Container -->
        	<div class="container">
            <?php
    
            $content = strip_shortcode_gallery( get_the_content() );
            $content = str_replace( ']]>', ']]>', apply_filters( 'projects_description', $content ) );
            echo $content;
    
            ?>
            </div>
    
           </div>

    Change description.php to matches this code

    <?php
    /**
     * Single project description
     *
     * @author 		WooThemes
     * @package 	Projects/Templates
     * @version     1.0.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    
    global $post;
    
    if ( ! $post->post_content ) return;
    ?>
    <div class="single-project-description" itemprop="description">
    
       <div id="content">
                <?php
    			 $gallery = get_post_gallery();
    
    			echo $gallery; ?>
            </div>  
    
    </div>
    Plugin Author James Koster

    (@jameskoster)

    Hey, cool to see you worked out a solution for yourself.

    Remember to copy any modified template files to your theme as described here. Then you can update Projects safely in the future.

    Thread Starter badincite

    (@badincite)

    With the new update the code to drop the catgories down a line doesnt work whats the new one? `.single-project.has-gallery .gallery#gallery-1 {
    width: inherit;
    }`

    Plugin Author James Koster

    (@jameskoster)

    You’re asking about WP galleries, not Projects galleries. Probably best to post that in the general forum or give some more info ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Embeding projects into existing website / And layout issues’ is closed to new replies.