Quantcast
Channel: Toolset » All Posts
Viewing all 20145 articles
Browse latest View live

Reply To: [Assigned] Problems after update

0
0
Something about this problem ?
Regards.

Reply To: [Waiting for user confirmation] Trying to make a custom field image a link

how to get a username from a user id (stored in postmeta) in views

0
0
This may be somewhat of a tricky question and hopefully it's possible with Toolset. I need a little direction on the approach.

I have a custom post type that stores a specified user ID in a custom post meta field (in addition to the post_author of the person who created the post).

In a view, I have a table displaying the current user's posts for this custom post type using a simple loop.

What I want to do is to display the *username* of the user whose ID was saved in the CUSTOM POST META field (not the post_author!).

What's the correct way to do this?

Jonathan

Reply To: [Assigned] New CPT on multisite with a deleted site

0
0
Dear Andrew,
Set it up as similar to your live server as possible. So use the latest files and database as well as use the same WordPress versions. Although you might not get exactly the same PHP and MySQL versions, keep it as close/similar as possible. I found some tutorials that can help you on this topic:

http://codex.wordpress.org/Create_A_Network
http://www.dewbloggers.com/install-wordpress-on-windows-locally-using-xampp/

You can also assign a local domain name (virtual host) adjusted in your Apache configuration and Windows hosts file. So if your live domain is mywebsite.com, your localhost version would be mywebsite.local. This post provides some useful information: http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/

Please let me know if you are satisfied with my answer and if I can help you with any other questions you might have.

Cheers,
Emerson

Reply To: Front End Filter by Taxonomy with Option of ALL

0
0
Sorry for the delay answer, I have modified following in your website:

1) edit your filter form as this:

<td>Property Types[wpv-control taxonomy="propertytype" type="select" url_param="proptype"]</td>

To:

<td class="propertytype">Property Types[wpv-control taxonomy="propertytype" type="select" url_param="proptype"]</td>

2) edit the js as this:

jQuery(document).ready(function($) {
$('td.propertytype select option:first').text('All');
});

Please check if the result page is it what you want. thanks

Reply To: [Resolved] wpv-post-excerpt length= …. not working

0
0
Hi CaridadZ, I am trying to use the same code in a view template, but it is not working. Has this been addressed yet? Please advise.

Insert Views Shortcode Missing Stuff

0
0
Previous to one of the last few updates, my Views was working as it should.
Recently, it seems to now conflict with two plugins that I need to run for my theme, WP JumpStart.
The two plugins are: Theme Blvd Layout Builder & Theme Blvd Widget Areas.
The other Theme Blvd plugins seem to be ok.
WIth either or both of those two plugins activated, the Insert Views Shortcode pop-up window is missing links to insert shortcodes.

What" rel="nofollow">http://postimg.org/image/7zb8xx9pz/">What it looks like
What" rel="nofollow">http://postimg.org/image/m4h1zqirb/">What is should look like

Reply To: [Assigned] Building a "Apply to this job" button, not form, with CRED

0
0
I assume your post type candidate is using slug "candidate", and each user only have one post in it, you can try this to
1) "get post of type candidate where author = current user"
global $current_user;
$args = array( 'author' => $current_user->ID, 'post_type'=> 'candidate');
$myposts = query_posts($args);
if ( have_posts() ) {
while ( have_posts() ) : $candidate_id = get_the_ID();;
endwhile; 
}
echo $candidate_id; // the post ID of post type candidate where author = current user

http://codex.wordpress.org/Function_Reference/query_posts

2) assign this post as parent of the job-application post created by this form
I assume your post type job-application is using slug "job-application", you can try like this:

add_post_meta($post_id, '_wpcf_belongs_job-application_id', $candidate_id, true);

http://codex.wordpress.org/Function_Reference/add_post_meta


Reply To: Insert Views Shortcode Missing Stuff

0
0
Apparently the URLs got messed up….
And then I realized that I don't have to deal with goofy image hosting sites, I can just upload to the post :)

Reply To: [Assigned] Image Slider within One Custom Post

0
0
I have tested the view in my localhost, it works fine, Could you send the login details of your website to me email: luo.y@icanlocalize.com
Thanks

Reply To: [Resolved] show default value in parametric dropdown search

0
0
I'm trying to achieve the same thing here. When I edit the filter control settings in the view, I'm not getting an option to edit the default input value for the select dropdown. Any ideas?

Dual sliders not in sync / using same Types data.

0
0
Hey all, I'm needing a bit of help on a fairly urgent project.

In a previous topic (http://wp-types.com/forums/topic/two-sliders-that-move-at-the-same-time/?action=answer&reply_id=69456) I needed some help getting a double slider going. With some awesome support I got the slider post type made and in one view got the images rotating and another view the associated text and headers.

Anyway. New issue.

The sliders both work, but now that we've got real content in them we've noticed they aren't in sync. Also, when using the left/right nav buttons on the slider image the text slider doesn't respond. We need them to at least be always the same content if not perfectly timed…

http://masekgolfcars.com.previewdns.com/

Let me know if you guys need an admin account to check stuff or if you'd like me to upload the views/types settings zip.
Help?!
Thanks,
~ Aaron

Reply To: Dual sliders not in sync / using same Types data.

0
0
Hey all, thought it might help if I attached the template and the views export.
The views export is set to "ask user for approval".

Download here: https://dl.dropbox.com/u/528952/MasekView.zip

Thanks all, any help is greatly appreciated!
~ Aaron

Reply To: [Waiting for user feedback] dynamic values for CRED???

0
0
Thank you!
any word on when the 1.3 version will be available? I believe i saw that this issue is being resolved in that version?

Reply To: [Assigned] Issues with Views

0
0
Could you enable WP debug mode, repeat actions you mentioned above, and post the debug log here.

http://wp-types.com/documentation/user-guides/debugging-types-and-views/

PHP Debugging
In case you think that Types or Views are doing something wrong (what we call a bug), you should enable PHP error logging. Again, edit your wp-config.php file and add the following:

ini_set('log_errors',TRUE);
ini_set('error_reporting', E_ALL);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
This will produce a file called ‘error_log.txt’ in your WordPress root

directory. Make sure that the web server can create and write this file.


Reply To: [Waiting for user confirmation] Error when downloading Views Real Estate Demo

0
0
Thanks – We can mark this as resolved!

Reply To: [Assigned] Insert Views Shortcode Missing Stuff

0
0
When I trying activate the plugin "Theme Blvd Layout Builder", I get following message:

You currently have the "Theme Blvd Layout Builder" plugin activated, however you are not using a theme with Theme Blvd Framework v2.2+, and so this plugin will not do anything.

Where can I download "a theme with Theme Blvd Framework v2.2+"? and I tested the Insert Views Shortcode pop-up window, it works fine.

Reply To: [Resolved] Trying to make a custom field image a link

0
0
Hi Amber,

Sorry, Please open a new thread for this. Because this one is marked as closed.


With Regards

Bigul M

Reply To: [Assigned] Datepicker is storing wrong date

0
0
I have tested german wordpress, download from http://de.wordpress.org/

There is only English version for the CRED date field, and how do you translate march as "märz" in the datepicker, is it a plugin or theme? could you descibe the details to duplicate the same problem? thanks

Reply To: [Waiting for user feedback] Custom Fileds search in backend

0
0
Actually it works ok also using Toolset fields.

I just wanted to inform Toolset users about it, because I did not find any other solution.

Best regards,
Peter

Viewing all 20145 articles
Browse latest View live




Latest Images