Forum Replies Created

Viewing 15 replies - 31 through 45 (of 48 total)
  • holgee

    (@holgee)

    Hi Andy,

    many thanks for your help! The qouted link provides not the direct solution, but it pointed me the right way !!!

    If i use if( tribe_is_event_query() ){

    the breadcrump – function works perfect !

    Same Problem on my webpage … since the update the breadcrump is not shown correctly …

    i am using if( tribe_get_events_title() != get_the_title() ){
    but it won´t work ?

    Thread Starter holgee

    (@holgee)

    ok – found the problem :

    There is a conflict with the MailPress Plugin which i use also.

    @andré thanks for the info – looking forward for the new release ! 😉 thx a lot ! 😉

    Thread Starter holgee

    (@holgee)

    After a little “searching” in the deepth of the plugin folder, i found the workaround !!!!

    To Query a specific event – taxonomy i use this, and it works perfekt:

    <?php query_posts( array( ‘post_type’ => ‘tribe_events’, ‘tribe_events_cat’ => ‘YOR EVENT CAT’, ‘showposts’ => 4, ‘order’ => ‘ASC’ ) );
    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    YOUR SPECIFIC POST CONTENT HERE

    <?php endwhile; endif; wp_reset_query(); ?>

    Many thanks for your help and ideas !!!!

    Holger

    @andré …

    many thanks for your reply !!!

    I will try it with the add on and the manual template and give a feedback !!!!

    Thanks a lot !!!

    Hi,

    first of all – thanks for this brilliant plugin ! I use it since 2 years and recommend it to all my friends using wordpress!

    Regarding the custom post types i have only one question:

    is it also possible to integrate the qouoted solution

    <processor>
    <query_posts>
    <post_type>post</post_type>
    <post_type>my_post_type</post_type>
    </query_posts>
    </processor>

    into a mailinglist – newsletter. I do not use the daily, weekly or monthly templates. I need to send a specific newsletter with a introductory text and then automatically use up to 8 Posts of a custom post type (the events calendar) …

    is it possible ?? Where i have to put the code ?

    Many thanks in advance …

    Holger

    Hi Austin,

    thanks for your help – but this doesn´t change the effekt. But you pointed me the right way. It is not an error belonging to the thickbox or the content, which is loaded into the thickbox …

    it is just the css file of the thickbox !!!

    it seems that since the update also the css of the thickbox layout changes … and after some fixing …

    everything works fine !!!!!

    thanks a lot !!!!

    Hello !

    since the update to WP 3.3 my custom login also breaks. I have already tried the solution above, and the “normal” login is fine now – many thanks.

    But the difference is, that i use a thickbox to open the login on the frontend.

    http://www.roaring-cubes.com

    here is what i used in the functions.php

    function add_themescript(){
        if(!is_admin()){
    		wp_deregister_script('jquery');
    		wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '');
        	wp_enqueue_script('jquery');
        	wp_enqueue_script('thickbox',null,array('jquery'));
        	wp_enqueue_style('loginbox.css',''.get_bloginfo('template_directory').'/login/loginbox.css', null, '1.0');
        }
    }
    add_action('init','add_themescript');

    in in the header.php i use the following code for the login:

    <div id="loginbox">
    			<?php
    				global $user_login;
    				if (is_user_logged_in()) {
    				echo '<p class="login-text">';
    				echo 'Willkommen bei den Roaring Cubes, <b><a href="/wp-admin/profile.php" title="Userprofile">', $user_login, '</a></b>. <a href="',wp_logout_url(get_permalink()),'" title="Logout">Logout</a>';
    				echo '</p>';
    				} else {
    				echo '<a href="#TB_inline?height=375&width=475&inlineId=rc-login" class="thickbox" title="The Roaring Cubes Login"><img src="', bloginfo('template_url'),'/images/login_top.png" alt="The Roaring Cubes Login" title="The Roaring Cubes Login" /></a>';
    				}
    			?>
    		</div>
    		<div id="rc-login" style="display:none;">
    			<?php wp_login_form(array(
    			        'echo' => true,
    			        'redirect' => site_url( $_SERVER['REQUEST_URI'] ),
    			        'form_id' => 'rc-loginform',
    			        'rc-label_username' => __( 'Username' ),
    			        'rc-label_password' => __( 'Password' ),
    			        'rc-label_remember' => __( 'Remember Me' ),
    			        'rc-label_log_in' => __( 'Log In' ),
    			        'id_username' => 'rc-user_login',
    			        'id_password' => 'rc-user_pass',
    			        'id_remember' => 'rc-rememberme',
    			        'id_submit' => 'wp-submit',
    			        'remember' => false,
    			        'value_username' => NULL,
    			        'value_remember' => false )); ?>

    the thickbox opens, but no login form is displayed – are there any changes in the wp_login_form function ?

    Many thanks in advance for your help !!!!!

    Holger

    Thread Starter holgee

    (@holgee)

    Hi …

    Seems to be a Firefox Problem ??!!!

    Or does the error appear in other browsers ?

    http://kb.mozillazine.org/Unresponsive_Script_Error

    Thread Starter holgee

    (@holgee)

    Hey again and many thanks for your reply!

    It is clear that i have to do a custom taxonomy query – but for this i need the string or name was given by you – or am i wrong ?

    If i do this query :

    <?php query_posts( array('post_type' => 'tribe_events', 'Veranstalt.Kategorien' => 'radioshows', 'posts_per_page' => 4, 'order' => 'DESC'));?>

    “Veranstalt.Kategorien” is the german translation of the taxonomy given by you. But i think i need the engl. or “original” name for the query.

    Thanks in advance for your help and best regards

    Holger

    Thread Starter holgee

    (@holgee)

    Hi David,

    thanks for your reply! It works perfekt ! Thanks for your help, i just wanted to know if the “Post-type” query is also supported by the fbtab Plugin.

    I get the right slug … but now i need the right taxonomy for the query … but this is a question for the event plugin support ! 😉

    So many thanks also for your great plugin – works brilliant in my Fanpages and it is really simple to use and set up !!!

    Thread Starter holgee

    (@holgee)

    Many thanks for your reply and your help !

    I tried also the following query but – it returns no value

    <?php query_posts( array('post_type' => 'tribe_events', 'category_name' => 'radio-shows', 'posts_per_page' => 4, 'order' => 'DESC'));?>

    “radio-shows” is the category i set up in the-events-kalendar tab in the admin panel.

    So, hopefully your dev John could help …

    Many thanks in advance !!!

    And also many thanks for this great plugin ! 😉

    Same prob here … i have tried all qouted steps:

    – Deactivate the plugin
    – Upgrade to the latest version
    – Activate the plugin
    – Go to “Smooth Slider” settings page and click on “Save” button (at bottom of the page)
    – Recheck whether “Smooth Slider Styles to Use on Other than Post/Pages” on settings page is set to “default”
    – Save the changes

    and the slider still doesn´t slide …

    Using WP 3.2.1

    Any Help ??

    Thread Starter holgee

    (@holgee)

    I post a new topic with more details and the right WP Version.

Viewing 15 replies - 31 through 45 (of 48 total)