Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Glenn.955

    (@glenn955)

    Thanks Barry for pointing me in the right direction!

    In the end I used the following:

    if ( tribe_is_photo() && !is_tax() && $query->is_main_query()) {

    Regards,

    Glenn.

    Thread Starter Glenn.955

    (@glenn955)

    Hi Barry,

    Thanks – Yes I have removed the code and the widget is working as I would hope. But the ones I am trying to move and show separately are included in the main view.

    As with everything else you mentioned it went right over my head. 🙁

    Any suggestions would be appreciated.

    Regards,

    Glenn.

    Thread Starter Glenn.955

    (@glenn955)

    Update: I have noticed that on the front page it displayed all the events – but if you go to any other page it displays only those that match category=LongRun.

    Also if you change “Display As” to something other than “Photo” it seems to work OK.

    Could the code I put in to eliminate LongRun from Photo displays be causing it? Any thoughts on how to overcome it?

    /**
     * Exclude Categories from Month View of the Events Calendar
     * Change 'Concert','Convention' to your Event Category Names to work
     */
    add_action( 'pre_get_posts', 'exclude_events_category' );
    function exclude_events_category( $query ) {
    if ( tribe_is_photo() && !is_tax() ) {
      $query->set( 'tax_query', array(
        array(
          'taxonomy' => TribeEvents::TAXONOMY,
          'field' => 'slug',
          'terms' => array('LongRun','longrun'),
          'operator' => 'NOT IN'
        )
        )
      );
    }
    return $query;
    }

    Regards,

    Glenn

    Just throwing it out there (just in case)…

    Do we need to be worried about running old scripts that might still contain any exploits that were recently discovered and would not have been patched?

    Just thinking out load…

    Glenn.

    I am trying to do this also and not having any luck.

    From the URL I want to pass a field value i.e. mysite.com/form/?plan=Custom

    Please advise.

    Glenn.

    Glenn.955

    (@glenn955)

    I am experiencing this issue also.

    Also it does not seem to be generating the thumbnails.

    I hope this can be resolved as I have been searching for a “Public Contribute” photo gallery for WP. (If no support I’d love to hear of any other suggestions for this solution!)

    TIA

    Glenn.

    Thread Starter Glenn.955

    (@glenn955)

    OK – Another small change. It needs to work better with mobile devices. At the moment I use the plugin “WP Mobile Detect” and add the following code to ‘custom-ribbon-maker/customribbonmaker.php’ to hide the ribbon from mobile devices. (Feel free to let me know if there is a better way…)

    Directly after:
    if ( ($visitor == 'all') || ($visitor == 'visitors' && (!is_user_logged_in())) || ($visitor == 'loggedin' && (is_user_logged_in())) ) {

    I add:
    if (function_exists('wpmd_is_notdevice') && wpmd_is_notdevice()) {

    And close the bracket after:
    ` echo ‘</style>’;
    }
    }`

    Thread Starter Glenn.955

    (@glenn955)

    Matt – thx for your reply.

    Coping the .htaccess doesn’t resolve the problem. I also looked at the .htaccess file from another site and changed it to look like:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /home/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /home/index.php [L]
    </IfModule>
    
    # END WordPress

    But this doesn’t work either.

    Regard,

    Glenn.

    Thread Starter Glenn.955

    (@glenn955)

    Thanks for your reply – my comment is a reflection on how I feel about the support I have received.

    I did raise my question with support and was told that my (1 week) support had expired. Even if I had purchased the next level up you still wouldn’t be giving me support. The level after that includes installation on 5 domains and I don’t need that. You talk about premium support – this seems to imply there is a non-premium kind of support but my experience today reveals that you pay for support or you get no support. From a users point of view, support is important, but I feel you see it more as a revenue generating service.

    I use forums as a tool for solving issues. In the last month on your forum there are 10 posts for this product. Only 2 of these have a reply. One posted hours ago gives a good reply. The other post that got attention from support also got comments from 4 other users, but no solution is shared.

    As I said – the product is ok. I would be happy to continue using it. But the support model needs to change. In the meantime I have found another product that I will use. Few dollars more – but they promise lifetime support. That is important!

Viewing 9 replies - 1 through 9 (of 9 total)