badincite
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: IFTTT Connecting to WordPressI got the same canned reply months ago and never got it work… still wishing though
Forum: Fixing WordPress
In reply to: Can you connect wp.org to IFTTT?I have them same issue my wordpress address and site address is set to https://chesapeakecontrols.com and I’m using my admin credentials still no luck. Im on WordPress 4.4.2 I tired awhile back and gave up but still want to get it working.
Forum: Themes and Templates
In reply to: [Pinnacle] Portfolio Pages Are Not foundThanks I got it one of themes I must have used changed it to a custom structure. And I went ahead a purchase the premium pinnacle theme!
Forum: Plugins
In reply to: [Projects by WooThemes] Project Cover Image not workingWhat theme are you using? This plugin is designed for woothemes templates, you’ll have to modifiy some things to get it to work with your theme
Forum: Plugins
In reply to: [Job Manager] Admin Application View Show DateThanks!
Forum: Plugins
In reply to: [Job Manager] Moving the jobs to another install*Where does the CSV Export to
Forum: Plugins
In reply to: [Job Manager] Moving the jobs to another installWhere to the CSV Export to? When I click it seems to run something but I get no notification and its not in the upload directory.
Forum: Plugins
In reply to: [Job Manager] Moving the jobs to another installAnd anyway to merge to databases? And where exactly is the database for the plugin? SQL? Or just in the plugin folder somewhere
Forum: Plugins
In reply to: [Job Manager] Moving the jobs to another installGood to go now with 7.22?
Forum: Plugins
In reply to: [Projects by WooThemes] Modifying the category php outputAlmost forgot content-parallax.php which you store in the templates folder
Forum: Plugins
In reply to: [Projects by WooThemes] Modifying the category php outputI was able to do this by modifying the shortcode output. This will work with the WP Parallax Content Slider plugin.
What I have changed the shortcode to do is look in the specific category and use the slug to identify it.
Example Homepage template code home-page-slider being my category
<!--Start: Slider --> <?php if ( function_exists( 'get_wp_parallax_content_slider' ) ) { get_wp_parallax_content_slider(); } ?> <div class="slider-wrapper"> <div id="da-slider" class="da-slider"> <!--Start: Slider Project Feed--> <?php echo do_shortcode('[projects orderby="modified" order="desc" categories="home-page-slider"]'); ?> <!--End: Slider Project Feed--> <nav class="da-arrows"> <span class="da-arrows-prev"></span> <span class="da-arrows-next"></span> </nav> </div> </div> <!-- end: Slider -->
Added this to my projects-template.php
Here is my modified class-projects-shortcode.php
Also need to add the following to your project-hooks.php
/** * Project parallax Items * */ add_action( 'projects_parallax_title', 'projects_template_parallax_project_title', 10 ); add_action( 'projects_parallax_image', 'projects_template_project_parallax_thumbnail', 10 ); add_action( 'projects_parallax_description', 'projects_template_short_descriparallax', 10 );
Forum: Plugins
In reply to: [Job Manager] Moving the jobs to another installOkay thanks, I will just manually enter the jobs and wait for the update before migrating the system.
Forum: Plugins
In reply to: [Projects by WooThemes] projects not showing upAre you using the short code to embed it in your main page? What is your projects page address? That’s under settings..
Forum: Plugins
In reply to: [Projects by WooThemes] Modifying the category php outputSo I want to display this to populate in this format with the page when I call out the category.
<div class="da-slide"> <h2>Project Title</h2> <p>Short Description</p> <a href="Project Link" class="da-link">Read more</a> <div class="da-img">Project Image</div> </div>
Forum: Plugins
In reply to: [Projects by WooThemes] The plugin is not displaying very wellHere is my modified version you probably have to play with it a bit to get it to display correctly with your theme
My version.. I broke the update links so it wont update.