Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter cliffn

    (@cliffn)

    Thank you. That was the solution. The “free membership” level has to be set to a membership level you’ve already created. It does not create a new “free membership” level at whatever # level you set.

    Thread Starter cliffn

    (@cliffn)

    I did. I set that level as 1, but as soon as I save, that box is emptied. That’s shown in the first picture of this new gallery below.

    I just want a singular free membership level. Every member will be contained in the one level. It’s free. It is the only membership level.

    More Photos about issue: https://imgur.com/a/a3VSr

    Thread Starter cliffn

    (@cliffn)

    I’ve done that, thank you.

    Thread Starter cliffn

    (@cliffn)

    Okay, so that link isn’t going to work because unfortunately I broke the website. Sorry. If you can help without seeing the actual problem on the website, that would be great. I’ll try to get the website working again.

    *Edit*Disregard this, I only broke the admin side.

    *Edit 2*Disregard that as well. Both sides were broken, but they got fixed. I think I’m in over my head.

    Thread Starter cliffn

    (@cliffn)

    The surrounding code.

    * Template Name: Homepage Lookalike
     * @package brandco
     */
    
    get_header(); ?>
    
    <main id="SiteMain" role="main">
    
    <section id="Header Video"
    	<br />
    	<br />
    	<br />
    	<div style="margin: 0px auto; text-align: center; width: 800px; height: 450px">
    		<iframe width="800" height="450" src="https://www.youtube.com/embed/xJrem36Fbz8" frameborder="10" allowfullscreen></iframe>
    	</div>
    </section>
    
    <section id="Section__CTA1">
    	<div class="PageContainer">
    		<!-- <ul class="GridThrees"> -->
    
    			<?php if( have_rows('call_to_actions') ): ?>
    				<?php $counter = 1; ?>
    			<?php while( have_rows('call_to_actions') ): the_row(); 
    
    				// vars
    				$title = get_sub_field('title');
    				$image = get_sub_field('picture');
    				$link = get_sub_field('link');
    				$hyperlink = get_sub_field('hyperlink');
    				$text = get_sub_field('introduction_text');
    				$button = get_sub_field('button_label');
    				?>
    				<?php if($counter % 2 == 0): ?>
    				<li class="ctaright">
    				<?php else: ?>
    				<li class="ctaleft">
    				<?php endif ?>
    					<a href="<?php echo $link ?>">
    
    					<div class="QuickLink__image"><img src="<?php echo $image; ?>"></div>
    
    					<div class="content">
    						<div class="QuickLink__title"><?php echo $title; ?></div>
    						<div><?php echo $text ?></div>
    						<div class="readmore"><?php echo $button ?></div>
    					</div>
    
    					</a>
    				</li>
    				<?php $counter++; ?>
    			<?php endwhile; ?>
    			<?php endif; ?>
    
    		<!-- </ul> -->
    	</div>
    </section>
Viewing 5 replies - 1 through 5 (of 5 total)