Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)
  • Thread Starter babussell2

    (@babussell2)

    I am sorry for the late reply. Recently I have updated to the new Woo-commerce version and updated my theme. Do you think that has anything to do with it?

    And yes! I know the site is loading slow. I will fix that issue right after I handle this current issue at hand. ??

    Thread Starter babussell2

    (@babussell2)

    So how should I go about resolving this? Contacting both my hosting provide and gateway provider?

    Thread Starter babussell2

    (@babussell2)

    I figured it out! I simply scaled it.

    Forum: Fixing WordPress
    In reply to: Picture Formatting
    Thread Starter babussell2

    (@babussell2)

    The new image was indeed bigger than the old one. Your solution worked. I’m having the same issue with the last picture on my site as well. The image covers the entire front of the box instead of being in the bottom right corner on the homepage. The code for this one is currently

    .main_content {
    		background: url(images/lach_photo.png) no-repeat bottom right;
                    
    }

    It’s not covering the box now because I restored it to the old image just so visitors will not see it.

    Forum: Fixing WordPress
    In reply to: PHP Error Code
    Thread Starter babussell2

    (@babussell2)

    My mistake. The error only appears on firefox, which is weird. I’m not sure if this information helps.

    Thread Starter babussell2

    (@babussell2)

    Steve. My mistake. I would like to know how to add 2 of them below the two text widgets on the page. So, one will be under “Board of Directors” and the other will be under “ISOF Membership”.

    Thread Starter babussell2

    (@babussell2)

    Yes, I would like to have 3 images in-between the text boxes. I want to have it in a way that is makes the page more “visually appealing”. I downloaded the plugin. I am just having issues figuring out a way to format them in between the text boxes.

    Thread Starter babussell2

    (@babussell2)

    They do not.

    Thread Starter babussell2

    (@babussell2)

    Thank You!

    Thread Starter babussell2

    (@babussell2)

    How would I go about enabling multisite on my current website?

    I’m assuming it’s done in my GoDaddy hosting panel?

    Thread Starter babussell2

    (@babussell2)

    Well, the developer doesn’t offer support for the item anymore. But thanks anyway I guess.

    Thread Starter babussell2

    (@babussell2)

    I’m using WP education theme by Vuzzu.

    This is the following code for the current content boxes on the homepage as we speak. Found in the template-home.php file.

    get_header(); ?>
    
    	<div class="container container_12">
    
    		<?php get_sidebar(); ?>
    
    		<!-- BEGIN CONTENT  -->
    		<div class="content alignleft">
    
    			 <div class="grid_8 conimage"><a href="https://franchisesociety.com/event-registration/"><img class="alignright" src="https://franchisesociety.com/wp-content/uploads/2016/11/2017-ISOF-CONFERENCE-BANNER.jpg" alt="" /></a></div> 
    <?php
    
    			if(have_posts()) : the_post();
    				echo '<div class="grid_8">';
    					the_content();
    				echo '</div>';
    			endif;
    
    			// Showing featured news
    			if( !get_option('vz_options_home_featuredarticles_disabled') ) vz_home_featured();
    
    			dynamic_sidebar('Home-feeds');
    
    			// Showing home news block
    			if( !get_option('vz_options_home_newsblock_disabled') ) vz_home_news();
    
    			// Showing home events block
    			if( !get_option('vz_options_home_eventsblock_disabled') ) vz_home_events();
    
    			// Showing new sidebar
    			dynamic_sidebar('Home-bottom');
    
    			?>
    
    		</div>
    		<!-- END CONTENT  -->
    
    	</div>
    
    <?php get_footer(); ?>

    As you can see, it has the “events, featured posts, and news” referenced here. I’m assuming I would have to add content boxes by switching something out?

    • This reply was modified 8 years ago by babussell2.
    Forum: Themes and Templates
    In reply to: Contact Box
    Thread Starter babussell2

    (@babussell2)

    You’re a life saver. Thank you!

    Forum: Themes and Templates
    In reply to: Contact Box
    Thread Starter babussell2

    (@babussell2)

    This is the code I found in the contact-page template file.

    <div class="container container_12">
    
    		<?php if( !get_option('vz_options_ct_map_disabled') && get_option('vz_options_ct_lat_lon') ) :
    			if( substr( get_option('vz_options_ct_lat_lon') ,0,7 ) != '<iframe' ) : ?>
    				<div class="grid_12" style="margin-bottom:20px">
    					<iframe width="940" scrolling="no" height="202" frameborder="0" 
    					src="https://www.google.com/maps?split=0&t=m&q=<?php echo get_option('vz_options_ct_lat_lon'); ?>&z=16&output=embed&iwloc=near" 
    					marginwidth="0" marginheight="0"></iframe>
    				</div>
    			<?php else : ?>
    				<div class="grid_12" style="margin-bottom:20px">
    					<?php echo get_option('vz_options_ct_lat_lon'); ?>
    				</div>
    			<?php endif;
    		endif; ?>
    
    		<div class="sidebar grid_4 <?php echo ($body_order[0] == 'sidebar') ? 'alignleft' : 'alignright'; ?>">
    			<div class="widget rounded_2 hardcoded_contact">
    				<h1><?php echo get_option('vz_options_ct_side_title', __('Information','vz_front_terms') ); ?></h1>
    				
    				<div class="information">
    					<span class="alignleft phone"></span>
    					<label><?php echo get_option('vz_options_ct_phone_label', __('Phone','vz_front_terms') ); ?></label>
    					<p> <?php echo get_option('vz_options_ct_phone'); ?> </p>
    					<div class="clear"></div>
    				</div>
    
    				<div class="information">
    					<span class="alignleft address"></span>
    					<label><?php echo get_option('vz_options_ct_address_label', __('Office Address','vz_front_terms') ); ?></label>
    					<p> <?php echo get_option('vz_options_ct_address'); ?> </p>
    					<div class="clear"></div>
    				</div>
    
    				<div class="information">
    					<span class="alignleft email"></span>
    					<label><?php echo get_option('vz_options_ct_email_label', __('Email','vz_front_terms') ); ?></label>
    					<p> <?php echo get_option('vz_options_ct_email'); ?> </p>
    					<div class="clear"></div>
    				</div>
    
    				<div class="information">
    					<span class="alignleft staff"></span>
    					<label><?php echo get_option('vz_options_ct_staff_label', __('Public relations','vz_front_terms') ); ?></label>
    					<p> <?php echo get_option('vz_options_ct_staff'); ?> </p>
    					<div class="clear"></div>
    				</div>
    
    			</div>
    		</div>
    
    		<!-- BEGIN CONTENT  -->
    		<div class="content alignleft">
    
    			<?php if(have_posts()) : the_post(); ?>
    
    				<div class="post rounded_2 alignleft grid_8">
    
    					<h1 class="title"> <?php the_title(); ?> </h1>
    
    					<div class="post-content contact-page"> 
    						<?php the_content(); ?> 
    
    						<form class="vzforms_ajax" id="vzform_">
    							<div class="alignleft half">
    								<label><?php _e('Full name','vz_front_terms'); ?>:</label> 
    								<input type="text" onblur="this.placeholder = '<?php _e('Your name','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your name','vz_front_terms'); ?>" name="fullname">
    							</div>
    
    							<div class="alignleft half">
    								<label><?php _e('E-mail address','vz_front_terms'); ?>:</label> 
    								<input type="email" onblur="this.placeholder = '<?php _e('Your email','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your email','vz_front_terms'); ?>" name="emailaddress">
    							</div>
    
    							<label><?php _e('Subject','vz_front_terms'); ?>:</label> 
    							<input type="text" onblur="this.placeholder = '<?php _e('Subject','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2" placeholder="<?php _e('Subject','vz_front_terms'); ?>" name="subject">
    							<label><?php _e('Your message','vz_front_terms'); ?>:</label> 
    							<textarea onblur="this.placeholder = '<?php _e('Your message','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your message','vz_front_terms'); ?>" name="yourmessage"></textarea>
    
    							<div class="clear"></div>
    							<input type="submit" class="main" value="<?php _e('Send','vz_front_terms'); ?>">
    							<input type="reset" class="second" value="<?php _e('Cancel','vz_front_terms'); ?>">
    						</form>
    
    						<div class="clear"></div>
    					</div>
    
    				</div>
    
    			<?php endif; ?>
    
    		</div>
    		<!-- END CONTENT  -->
    Thread Starter babussell2

    (@babussell2)

    Your solution worked, however, I’m adding CSS to change the image height and width in the css style sheet and it’s not working. Whenever I change the image size, it doesn’t show on the webpage. Instead, the boxes below it simply covers part of the image. You can take a look and see what I am referring to.

Viewing 15 replies - 1 through 15 (of 22 total)