Are there plans to update this plugin? It’s been three years since there has been an update. This plugin is perfect. I’d buy a copy… but sadly it hasn’t been updated. Are there any plans to do so?
]]>Hi, that plugin does EXACTLY what I’m looking for, but need some php customizations and it’s not much uptodate, do someone knows if it’s still maintained ? And/or if there’s a free alternative to it ?
Many thanks !
]]>Hi,
We use this plugin to display our project portfolio.. but the project url when clicked directs to the homepage..
I dont know what is causing the issues
]]>can you make me to Editor for Switzerland German!
-Thanks
User: @stooni
]]>How to remove the plugin integration in canvas to get layout for the ‘projects’ post type working without this plugin installed. When the Main Layout is set for the entire site, ‘projects’ will not follow suit unless this plugin is activated and layout set in the projects layout settings.
]]>Hi there,
– We have a page called “referenties” where different projects are shown (dutch);
– We translated that page with WPML to English;
– Then we translated one of the projects to English;
– But when viewing the English page, not a single project is shown;
– URL dutch page /domainname.com/referenties
– URL english page /domainname.com/en/references
Does anybody have a clue how to fix this? In a way the projects we translated to English are also shown on the English references-page?
Best regards!
]]>I have used this shortcode on my homepage of a website.
<?php echo do_shortcode( ‘[projects limit=”12″ columns=”3″ orderby=”date” order=”desc” exclude_categories=””]’ ); ?>
Currently the images are being pulled through at 1500px width and 2000px height, is there any way i can change these numbers so they are pulling through smaller to improve site performance
]]>Hello! Detected incorrect work of the plugin with the “WP Advocate” theme.
In the properties of the project page configuration set a template “on the entire width of the page”, but this has no effect. Displayed side panel, which should not be.
How can I fix it?
Yours faithfully,
nssoft96
I have reported this issue before to WooThemes and they couldn’t replicate. I think as this thread notes, it usually happens if you add a bunch of photos within the featured image dialog. It’s basically impossible to remove them once they are there, and you have to recreate the project to get rid of them. Would be great to have a long term fix to this.
Also reported here: https://www.ads-software.com/support/topic/images-added-by-add-media-being-picked-by-image-gallery/
Thanks!
]]>I would like to upgrade my WP site to 4.6.1, is Projects version 1.5.0 compatible? Right now I’m using version 1.2.2
]]>I am trying to remove an action but it isn’t being removed
This is what I have in functions.php
add_action( 'sensei_single_quiz_questions_after', 'remove_action_buttons', 10, 0 );
function remove_action_buttons() {
remove_action( 'sensei_single_quiz_questions_after', array( 'Sensei_Quiz', 'action_buttons' ), 10, 0 );
}
add_action( 'sensei_single_quiz_questions_after', 'new_action_buttons' );
function new_action_buttons() {
The original add action is
add_action( ‘sensei_single_quiz_questions_after’, array( ‘Sensei_Quiz’, ‘action_buttons’ ), 10, 0 );
It is definitely going into the function that calls the remove but the buttons are still there on the page. It calls the replacement ok and adds those buttons. Thanks
]]>For anyone who needs:
/*Translation for Projects*/
// change singular name. Change "Your Proyect Name" to something
add_filter( 'projects_post_type_singular_name', 'replace_project_with_new');
add_filter( 'projects_post_type_plural_name', 'replace_project_with_new');
function replace_project_with_new( $project ){ $replaced = str_ireplace('Project', 'Your Proyect Name', $project); return $replaced; }
/* rewrite slug projects*/
//changes slug for single project page. Change "your-slug" to the desired slug
flush_rewrite_rules();
function change_slug_of_post_type_portfolio() {
$args = get_post_type_object("project");
$args->rewrite["slug"] = "your-slug";
register_post_type($args->name, $args);
}
add_action('init', 'change_slug_of_post_type_portfolio', 20);
Tested in Projects Version: 1.5.0
]]>I love how easy your plugin enables the creation of the project pages. Good work in creating this – thank you.
We rescue kill-listed dogs and use the projects plugin for showcasing our rehabilitated dogs to foster and adopters.
The problem is with the project cover image appearing at the top of the project page. I have the picture of the animal within the detailed attention grabbing content. I also use a posts slider on other pages to showcase each dog and bring them to the project page according to its category.
The featured image appearing at the top of the project page is not needed and takes away from the visitor seeing the smaller picture with a description immediately. we want them to start reading right away to capture their attention.
How can I remove the image from appearing on the top of the project page but still be available for the post slider? I tried modifying the functions.php file but it rendered the theme unusable. I am not a WordPress programmer – but have programmed in other languages – php and java ot being one of them. Yet I guess, LOL. I need your help please.
]]>I have added a number of metafields according to the instructions given in the Woo documentation. But now, every time I update a project I am redirected to the posts list and my save is not registered. Interestingly, the work does show up in autosaves, but I can’t save it as the active version.
site is located at https://www.edminsters.com/ministry
]]>Hi when i add the projects to s certain page it also adds another menu after the project thumbnails im not sure why this is happening and want to stop it?
]]>So it seems like when there is an issue with image thumbnail/size generation. e.g. when the php5-gd library is not installed. WordPress still continues to function without multiple sizes, by falling back to the original image, full size.
However the WooThemes Projects plugin throws an error, and does not fallback to original image size. This can easily be fixed with one small change in assets/js/admin.js. Change:
<img src="' + attachment.sizes.thumbnail.url + '" />
to be:
<img src="' + attachment.sizes.thumbnail ? attachment.sizes.thumbnail.url : attachment.sizes.full.urll + '" />
Then it will fallback to use the fullsize image and allow the user to continue, outputting the fullsize image on the projects page gallery
Simples!
]]>It looks like Projects can not figure out to shift properly between the translations on the frontend. No projects will show except by using shortcode.
Is there a way to get projects working with polylang plugin activated? For example by plugin alteration like Jesper Lund Nielsen suggested for Woocommerce, a filter or any other way?
]]>Hi,
I added some projects that consist of a cover image and a handful of additional images.
Since projects offers an option to add gallery images, I used that one and added my additional images there.
But these images are only displayed one below the other, with no gallery kind of behavior or anything that reminds of a gallery.
So I figured out that if I add a gallery via the “add media” button right into the content (option: images attached to the post) I do get a tiny gallery on the right off my images that are displayed one below the other.
Even if I delete all images from the projects’ plugins “Add Gallery images” option in the sidebar these images are still there.
So now I need help to either
– get those gallery images behave like a gallery
– or get rid of those images and build my own gallery, preferably without having to delete all connections between the post and the images, since it would be an awful lot of work…
Theme is WooThemes Storefront 1.6.1
Thanks for your help!
Best,
Elisabeth
]]>I’m using the plugin in a theme package ‘Structure’ from ThemeMove and according to them I should have an option to use the ‘Visual Composer’ page builder that is included in the Theme, to build my projects. This option should be in the ‘project details’ section, just above the product line.
However, this screenshot shows that this option is missing. Is this a theme issue or is something missing in the ZIP file of the plugin? Would it be possible to make this a standard feature, that is hidden if the Visual Composer plugin is not installed?
]]>I just downloaded the plugin version 1.5.0 and replaced the POT file in the language folder of the plugin. I have translated all lines in the stable version online language file and exported this as a .po file. Imported correctly, all fine so far.
The problem is that some texts are still not translated. I use the plugin LocoTranslate to translate all lines from the POT file to a Dutch language file, but some lines seem to be missing in the POT file.
Please take a look at this screenshot, from editing a project: as you can see, the lines from ‘location’ to ‘architect’ are still in English. Also the word ‘categories’, used in the project details in a single project, is not translated, although the Dutch language file is at 100%.
I have searched everywhere, but just cannot find these texts to translate them properly. They are not in the POT file. Could you please have a look at this issue? I’m working on a website that I have to finish within two weeks, so I would appreciate a quick response very much. Thanks in advance.
]]>I have a lot of pages wich I want to become projects.
Can I do that in one way or another in 1x?
Or or should I convert page by page to a project?
Hi there, I am using the Project plugin and I can see the Project meta information of Client and URL. I would like to overwrite these names somehow to say Author instead of Client and Buy Now instead of URL.
Is there a function to do this? Thanks in advance.
Thanks,
James
I have a problem. I use storefornt theme and I install plugin when I click on image to view details of project I see
Ooops! That page cant’be found
I made integration from support duplicate the page.php rename on projects.php and still nothing
]]>how can i add professional, images for project by room . how can i filter the project by budget and location using this plugin?
]]>Is there a way i can set the image size to a 100% in the archive page
Thanks
When I click “Add project gallery images” nothing happens at all.
I have copied + pasted the link for “Add project gallery images” here:
https://localhost:8888/new22/wordpress/wp-admin/post-new.php?post_type=project#
^ as you can see, it’s basically just an anchor. It’s a blank anchor, actually. So, what happens if I scroll down a little bit and click the link is the page quickly scrolls back up to the top of the page. That’s it. This is basically broken.
It should be opening the media library, I think. If it is just bringing me back to the main WYSIWYG area to add a gallery in the usual way via the Editor, then it’s a pretty useless link.
]]>I’m a little wary of using this plugin if WooThemes might have given up on it. WooThemes is a pretty big deal and this says it’s only compatible up to 4.0.8. Current WordPress is 4.3.1… I’m fairly new to WordPress, so maybe I’m worried over nothing, but 4.0.8 to 4.3.1 seems like a big jump.
]]>Hi,
First of all I want to thank you guys for making an awesome plugin!
I was wondering how can you enable the projects navigation on projects detail page. I was looking at the source code and i see this:
<nav class="projects-single-pagination">
<div class="next">
</div>
<div class="previous">
</div>
</nav>
but it doesnt show on the project details page.
any help would really be appreciated, sorry guys I’m really new at this.
]]>Is it possible to enable comments for projects?
]]>I’m trying to have two separate pages with projects. Can this be done?
I have 20 films I’m trying to show…9 on Friday night as a separate projects page and 11 on Saturday night as a separate projects page.
The 20 projects are categorized as Friday and Saturday.
I have two pages, Friday Night and Saturday Night.
But for some reason I’m unable to put the Friday categorized projects onto the Friday night page only.
Is the Woothemes projects plugin only for one single page of projects?
Many thanks,
B
]]>