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

Reply To: [Waiting for user feedback] having problems with views/templates on second site

$
0
0

Emerson – I'm about to fly out! the size of the backup is just due to images, you would do fine with the database backup (which on backup buddy is about 8mb). the actual size of my database uncompressed is around 80mb. i do have some old fields to drop (the previous version of the database – i copied the fields instead of using the same fields, just so i could have something to go back to in case i screwed it up!!). if this is something you want done right now, i can provide my ssh login to you, otherwise it will have to wait until tonight! you seem to work around the clock anyways!


Reply To: [Waiting for user confirmation] Date Order

$
0
0

Almost there, I'm having problems with the dates

   echo get_post_meta($child_post->ID, 'wpcf-date', true); 

It produces a long bit of code and if I put jMY in there it produces 1 Jan 1970 on all lines, this was my old code

  echo date('j M Y' , $child_post->fields["date"]);

Reply To: [Waiting for user confirmation] switching post types – need to manually update

$
0
0

i resolved this by doing it manually!

Reply To: [Waiting for user confirmation] Insert Types Shortcode in Custom Post

$
0
0

Dear Aldrin,

At least some of the messages are caused by WordPress itself:

http://core.trac.wordpress.org/ticket/24994

To confirm if this is the problem, open the file wp-includes/js/jquery/jquery.js and delete the second line.


Regards,
Caridad

Posts related to a filtered List

$
0
0

Hi there,

I have a Problem here, and I am not sure if it is posible to solve it with the Toolset.

I have a custom posttype "persons" and my normal Posttype "post" can be assosiated to a Person. So if i write a blogpost I can chose from a Dropdown if the Post is related to a Person. I do this with a intermediate Posttype so that i can hava a many-to-many relationship.

Now I have a View that shows a List of the custom posttype "persons" an I can filter this List! On the sidebar I want so show posts related to the "filtered persons".

Lets say I have set a filter and the result list shows me the persons with the IDs 5,6,7. How can I get a List of all News related to this IDs? Is this posible?

Greats Harald

Reply To: [Waiting for user feedback] types updates into types and not wp-types

$
0
0

yes that's definitely the problem.

If you install types from the wp-repository it's in plugins/types and after an update from there again.

Reply To: [Waiting for user confirmation] Display posts based on parent page's categories

$
0
0

Thanks for your help. The simple solution is just to set the category for the child pages and use the same view as I have done on the parent page. I should've thought of this, lol.

THanks

In Views, how can you make a search like in most car listing website?

$
0
0

Hi,
I would like to make this search in Views…. Car Brand > Car Models under it. If I chose Toyota for example (parent search filter), the matching set of Car Models under the brand name Toyota will be visible (corolla, corona, pregio,… and so on). Amir said it would be part of a future feature but for now some JS would be involved.

Thanks


Reply To: [Assigned] Problem of view template not enforced to newly created attachments.automatically

$
0
0

Dear ericL-2,

It has been fixed already, please update the Views to 1.3.0.3 and the others as well. Let me know if it has been solved.

Reply To: [Assigned] Grid Alignment

$
0
0

Dear fleurP,

Please let see the HTML code of this View. Also I can't see this page with grid, which is it?

Reply To: [Assigned] (Wrongly) duplicate content in Content Template since Views 1.2.3

$
0
0

Dear Graham,

I created a test property with an image and translated to spanish. Then I tried to get them duplicated but I'm unable to reproduce the problem.

Can you take a look and let me know if you can reproduce it and whats steps you followed? Or maybe its only a problem with properties created before the updated?

Regards,
Caridad

Reply To: [Waiting for user feedback] Grid Alignment

$
0
0

Decided to go another route. Thanks

Reply To: [Assigned] Original theme post content still viewable

$
0
0

Dear fleurP,

Content Templates modify the content when called from 'the_content' function, probably the "the_content" function is called in the description area. You need to make some adjusts if you are using Woocommerce, which is better explained here: http://wp-types.com/learn/create-an-ecommerce-wordpress-site/single-product/

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

Reply To: [Assigned] Open template with lightbox evolution

$
0
0

Dear laurentR,

Please place here your Content Template and the URL of this plugin, I will try to replicate it here and look for a solution so.

Reply To: [Waiting for user feedback] Missing sidewide sections on Toolset Bootstrap

$
0
0

Hi,

I tried to add _child behind the function (also at the 'add action' part), but that doens't work.
I think this is maybe because in the original functions.php there is also an if statement present, so I tried the following:

// Registers footer widget area

if (!function_exists('wpbootstrap_register_footer_widgets') && wpbootstrap_get_setting('general_settings', 'display_footer_widgets')) {



    function wpbootstrap_register_footer_widgets_child() {

        $widget_class = 'span4';

        if (wpbootstrap_get_setting('general_settings', 'display_footer_widgets')) {

            $widget_class = 'span' . intval(of_get_option('footer_widget_width'));

        }

        register_sidebar(array(

            'name' => __('Footer widgets area', 'wpbootstrap'),

            'id' => 'footer-widgets',

            'description' => __('Appears above the footer', 'wpbootstrap'),

            'before_widget' => '<section id="%1$s" class="' . $widget_class . ' widget %2$s">',

            'after_widget' => '</section>',

            'before_title' => '<h3 class="widget-title">',

            'after_title' => '</h3>',

        ));

    }



    add_action('widgets_init', 'wpbootstrap_register_footer_widgets_child');

}

But now there is a problem width the wpbootstrap_get_setting part, see this error:

Fatal error: Call to undefined function wpbootstrap_get_setting() in /www/web2738/www.caesarsbeauty.nl/http/wp-content/themes/toolset-bootstrap-child/functions.php on line 19 Call Stack: 0.0001 633240 1. {main}() /www/web2738/www.caesarsbeauty.nl/http/index.php:0 0.0002 638784 2. require('/www/web2738/www.caesarsbeauty.nl/http/wp-blog-header.php') /www/web2738/www.caesarsbeauty.nl/http/index.php:17 0.0004 667424 3. require_once('/www/web2738/www.caesarsbeauty.nl/http/wp-load.php') /www/web2738/www.caesarsbeauty.nl/http/wp-blog-header.php:12 0.0005 688800 4. require_once('/www/web2738/www.caesarsbeauty.nl/http/wp-config.php') /www/web2738/www.caesarsbeauty.nl/http/wp-load.php:29 0.0010 833480 5. require_once('/www/web2738/www.caesarsbeauty.nl/http/wp-settings.php') /www/web2738/www.caesarsbeauty.nl/http/wp-config.php:90 0.4196 70801552 6. include('/www/web2738/www.caesarsbeauty.nl/http/wp-content/themes/toolset-bootstrap-child/functions.php') /www/web2738/www.caesarsbeauty.nl/http/wp-settings.php:291

Thanks.

Willem


Reply To: [Assigned] Help with Views

$
0
0

Dear sebC,

There are many ways to display these fields, you could use Views, Content Templates or insert the fields directly by the "T" icon as you can see in the "inser_fields.png" attached image.

Two useful docs:

Views: http://wp-types.com/documentation/user-guides/views/
Content Templates: http://wp-types.com/documentation/user-guides/view-templates/

Page Template is a custom template created by Content Templates to customize pages. Post Type is any custom post type, like Page, Post, Products.

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

Reply To: Display 2 level relationship fields

$
0
0

By The way, I opened more than 40 tabs in Chrome just to find a solution for this scenario. Hope I can find a solution here and close these tabs :(

Reply To: [Assigned] Jetpack Contact Form button not showing up in editor

$
0
0

Dear Kevin,

I have just tried the combination of plugins on the latest version of WordPress. I used the latest versions of Types, Views, Access and Jetpack and the button is there. Can you make sure you also have the latest versions installed?

If it still doesn't work, try switching to the default theme and turning off other plugins. This way we can confirm there is no interaction with other plugins.

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

Regards,
Caridad

Reply To: [Assigned] Display 2 level relationship fields

$
0
0

Dear abdulazizA,

That's a bit complex scenario, it will more simple to explain if we use a preconfigured test site to reproduce it. You could create this one as a Discover site (discover-wp.com) and share the credentials with me (adriano.f@icanlocalize.com – don't forget to place this thread URL in the subject's email).

Reply To: [Assigned] Gallery insertion, but only if multiple images in Custom Post Media

$
0
0

Dear bradK,

I don't have sure if understand your question properly. Would you like to use the [gallery] shortcode with different behaviors (when it is single image / multiple images)? Please explaing it a little more.

Viewing all 20145 articles
Browse latest View live




Latest Images