Forum Replies Created

Viewing 15 replies - 76 through 90 (of 102 total)
  • Thread Starter Kazam Creative

    (@goldenagemedia)

    Thank you, it seems to install and activate fine now, although I get a weird message upon activation:

    “The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.”

    Not sure what that might be.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    Thanks for your response.

    Yeah I thought that too, however I changed the theme to 2 different, non-modified themes (Twenty-Sixteen and Divi from Elegant Themes) and deactivated all plugins, then tried to reactivate it and I still got the same fatal error.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    I’ve been on Christmas holidays for the past few weeks so apologies for the delay in reply.

    I tried to create what I needed based on my initial request, using the code snippet you provided, but as I’m not overly skilled in PHP I was unable to get any of this to work for me.

    I will have a look through the WordPress Codex and see if I can find what I’m looking for.

    I appreciate your help nonetheless.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    thank you for your help with this. I tried to refer to the taxonomy cr3ativportfolio_type but still can’t seem to get it to work.

    Are you able to provide a code snippet that would get this to show the category name? Thank you.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    Maybe that’s why it’s not working Michael. I assumed it was categories I needed but maybe it’s custom taxonomies…my knowledge really doesn’t go far into php scripting sorry.

    So the full custom page template code is as follows:

    <?php
    /*
    Template Name: Cr3ativPortfolio-4ColumnFilterable
    */
    ?>
    <?php get_header(); ?>
    
    <div id="content" class="clearfix fullwidth">
    	<div id="left-area">
    
    	<?php get_template_part('includes/top_info'); ?>
    
    	<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
        <!-- Start of wrapper -->
        <div class="cr3ativeportfolio_wrapper">
            <?php the_content('        '); ?>
            <?php endwhile; ?>
            <?php else: ?>
            <p>
              <?php _e( 'There are no posts to display. Try using the search.', 'cr3atport' ); ?>
            </p>
            <?php endif; ?>
    
    		<ul id="cr3ativeportfolio_portfolio-filter">
    			<li><a href="#bistro-deals" title="" rel="bistro-deals" id="bistro-deals">Bistro<br />Deals</a></li>
    			<li><a href="#gig-guide" title="" rel="gig-guide" id="gig-guide">Gig<br />Guide</a></li>
    			<li><a href="#special-events" title="" rel="special-events" id="special-events">Special<br />Events</a></li>
    			<li><a href="#weekly-events" title="" rel="weekly-events" id="weekly-events">Weekly<br />Events</a></li>
    			<li id="showallright"><a href="#all" title="" id="show-all"> Show All</a></li>
    		</ul>
    
        <?php   $loop = new WP_Query(array('post_type' => 'cr3ativportfolio', 'posts_per_page' => -1, 'showposts' => 9999999 ));
                $count =0;
        ?>
    
            <!-- Start of cr3ativeportfolio_portfolio-wrapper -->
            <div id="cr3ativeportfolio_portfolio-wrapper">
    
                <!-- Start of cr3ativeportfolio_portfolio-list -->
                <ul id="cr3ativeportfolio_portfolio-list">
    
                <?php if ( $loop ) : while ( $loop->have_posts() ) : $loop->the_post(); ?>
    
                <?php
                    $terms = get_the_terms( $post->ID, 'cr3ativportfolio_type' );
                    if ( $terms && ! is_wp_error( $terms ) ) :
                        $links = array();
    
                        foreach ( $terms as $term )
                        {
                            $links[] = $term->name;
                        }
                        $links = str_replace(' ', '-', $links);
                        $tax = join( " ", $links );
                    else :
                        $tax = '';
                    endif;
                ?>
    
                    <li class="cr3ativeportfolio_portfolio-item <?php echo strtolower($tax); ?> all">
    
                        <div class="cr3ativeportfolio_thumb">
    
                            <div class="cr3ativeportfolio_mask">
                                <?php the_post_thumbnail('slide'); ?>
                            </div>
    
                        </div>
                        <span class="cr3ativeportfolio_title"><?php the_title (); ?></span>
    
                        <div class="cr3ativeportfolio_port_date">
    						<strong><?php echo get_post_meta($post->ID, 'cr3ativportfolio_leftintrotext', $single = true);  ?></strong>
                        </div>
    
    					<div class="cr3ativeportfolio_content">
    						<?php the_content(); ?>
    					</div>
    
    					<div class="cr3ativeportfolio_footer">
    						<?php
    							$postcat = the_category();
    
    							if(in_category('weekly-events')) { echo esc_html('<i class="icon-weeklyevents"></i>');
    							} elseif(in_category('special-events')) { echo esc_html('<i class="icon-specialevents"></i>');
    							} elseif(in_category('gig-guide')) { echo esc_html('<i class="icon-gigguide"></i>');
    							} elseif(in_category('bistro-deals')) { echo esc_html('<i class="icon-bistrodeals"></i>');
    							} else { echo esc_html('Post'); }
    						?>
    					</div>
                    </li>
    
                <?php endwhile; else: ?>
    
                <?php endif; ?>
    
                </ul>
    
          <div class="cr3ativeportfolioclear"></div>
    
        </div>
        <!-- end #portfolio-wrapper--> 
    
    	</div> 	<!-- end #left-area -->
    
    </div> <!-- end #content -->
    
      <!-- Start of clear fix -->
      <div class="cr3ativeportfolioclear"></div>
    
    </div>
    <!-- End of page wrap -->
    
    <?php get_footer (); ?>

    Not sure if that’s useful.

    My first assumption was that it might’ve been a basic wordpress coding question but you’re right, I should probably ask this in the plugins support section.

    Thanks for having a look.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    I have the defined classes that I’ve stylised in the stylesheet, but despite that if the script worked then at least the <i> tags should show in the source code.

    Anyone have any ideas? I tried setting a variable for the category but didn’t use it. Would this be a better way to try and find out what the category is?

    Kazam Creative

    (@goldenagemedia)

    How was this problem fixed? I have the same issue, the portfolio posts are listed fine here:
    https://laurietonhotel.com.au/whatson/bistro-deals/

    however if I try and click on them I get the 404 error. No idea why!

    Kazam Creative

    (@goldenagemedia)

    I don’t know why this post is marked as resolved, the problem still exists.

    No update was ever released either.

    There are six authors for this plugin and noone has been able to provide a response to this issue for the past two weeks?

    I have had to remove intergeo maps from all of my websites and revert back to the google maps embed code due to the lack of support.

    Can we get a heads up on if this is being looked into guys? Still a great plugin if you don’t upgrade to wp4.3!

    same problem, map does not show at all since wordpress 4.3 update, even when using Twenty Eleven theme with deactivated plugins.

    Thread Starter Kazam Creative

    (@goldenagemedia)

    Thank you for your prompt response. I’ll keep an eye out for these changes in the next updates.

    has this been fixed yet? I also have the same problem

    Thread Starter Kazam Creative

    (@goldenagemedia)

    Sorry that did nothing, I meant to say owl.carousel.js > line 112 I changed:

    “base.options.autoPlay = 5000;”
    to
    “base.options.autoPlay = 15000;”

    Thread Starter Kazam Creative

    (@goldenagemedia)

    Update: I changed the DB username and password in the wp-config file but no success either.

    If you wish to see the error visit this page and try to purchase a gift voucher:
    https://amaroocruise.com.au/gift-vouchers/

Viewing 15 replies - 76 through 90 (of 102 total)