powerj
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3 different categories on homepage bloglistYou could have 3 different featured posts widgets (search featured posts plugin)
Forum: Fixing WordPress
In reply to: Change attachment page URLhoping I got this right
If that is just a link to the pdf in the body of the post/page, click on the edit link icon and change the title
Forum: Fixing WordPress
In reply to: Google not recognizing site tagline.Google shows the meta description. Try installing SEO Yoast plugin, great plugin that will allow you to show exactly what you want for each page
Forum: Fixing WordPress
In reply to: Looking to design a custom menuHooefully I understand you correctly. Create your menu under Appearance, Menus as the main menu and then use CSS to style as per your design
Forum: Fixing WordPress
In reply to: Change button for mobile versionCheck in your css file (prob styles.css) for media queries (usually right at the bottom). For the smallest screen size media query, add new styles for your buttons.
Forum: Fixing WordPress
In reply to: Google fonts put my website downGo to your plugins directory and rename that plugin folder (to anything). This should disable your plugin and you will then be able to log in as normal.
Forum: Fixing WordPress
In reply to: Making Clickable Links in my footerHi Ade
If you create a page for T&Cs, privacy policy etc and then copy the shortlink for each (available under the page title) and copy it to a link in a footer widget eg
<a href='shortlink goes here'>Privacy Policy</a>
Forum: Plugins
In reply to: [Simple Lightbox] SLB and ACF Gallery – slb_activateTidied up a little – reposted in case helpful for someone else
function member_loop() { $member_since = get_post_meta(get_the_ID() , 'member_since', true); //custom member since field $images = get_field('image_gallery'); echo get_the_title(); echo '<br/>'; echo 'Member since: ' . $member_since; if( $images ): ?> <div> <ul class="slides"> <?php foreach( $images as $image ): ?> <?php $image_url = $image['url']; ?> <?php $content="<li><a href='$image_url'><img alt='{$image['alt']}' src='$image_url' /></a> <p>{$image['caption']};</p></li>"; ?> <?php if ( function_exists('slb_activate') ) ?> <?php $content = slb_activate($content); ?> <?php echo $content; ?> <?php endforeach; ?> </ul> </div> <?php endif; }
Forum: Plugins
In reply to: [Simple Lightbox] SLB and ACF Gallery – slb_activateThank you SO much.
I also attempted to put my output in $content and got this – look OK now?
function member_loop() { $member_since = get_post_meta(get_the_ID() , 'member_since', true); //custom member since field $images = get_field('image_gallery'); echo get_the_title(); echo '<br/>'; echo 'Member since: ' . $member_since; if( $images ): ?> <div> <ul class="slides"> <?php foreach( $images as $image ): ?> <?php $image_url = $image['url']; ?> <?php $content="<li><a href='$image_url'><img src='$image_url' /></a> <p><?php echo {$image['caption']}; ?></p></li>"; ?> <?php if ( function_exists('slb_activate') ) ?> <?php $content = slb_activate($content); ?> <?php echo $content; ?> <?php endforeach; ?> </ul> </div> <?php endif; }
Forum: Fixing WordPress
In reply to: .htaccess file block semalt etcActually disregard that last question – Just realised I’m being dumb
Forum: Fixing WordPress
In reply to: .htaccess file block semalt etcThank you so much. Does it take Google a little while to respond to the change?
Oh stvwlf you wonderful person. Thank you so much