Sam
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] What template does it use?Sorted thanks! ??
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] What template does it use?Hi @benjamin,
The URL is;
https://thrivetest.website/wrightmarshall/auctioneers/calendar/It’s a specific date but showing on a random page if that makes sense
Thanks
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] What template does it use?Hi @tashmina thanks for getting back to me, I’ve done that already thanks – it’s when I click on an specific event its taking me to that post/event page but it’s choosing a random template and don’t understand why?
Forum: Fixing WordPress
In reply to: Specific category archiveHi Digico, thanks for getting back to me.
I have a custom page built but how could I restrict the widget to show only football matches in previous months and not Tennis?
Also could I have a widget for each month so one for Feb, click and it shows the matches and one for Jan, click and it shows any them ones?
Thanks for your help ??
Forum: Fixing WordPress
In reply to: How to add featured image as background imageResolved ??
Forum: Fixing WordPress
In reply to: How to add featured image as background imageYES!! That worked perfectly!
Thank you so much for your help and patience ??
Forum: Fixing WordPress
In reply to: How to add featured image as background imageNope ??
Just shows up in the code as
background-image: url ('');
Forum: Fixing WordPress
In reply to: How to add featured image as background imageYeah I had another look and still nothing sorry, what I’m hoping to achieve is;
<div class="medium-4 columns noPad" style="background-image:url('FEATURED IMAGE HERE')"> <div class="sectorPanel"> <? php $post_id = 43; $queried_post = get_post($post_id); ?> <h4 class="text-center primaryColor"><?php echo $queried_post->post_title; ?></h4> <p class="text-center whiteColor"><?php echo $queried_post->post_content; ?></p> </div> </div>
Forum: Fixing WordPress
In reply to: How to add featured image as background imageHi, thanks for your help but feeling stupid because it’s not worked and still not pulling anything through…
I’ve made sure all my posts have a featured image and yet note :-s
Forum: Fixing WordPress
In reply to: How to add featured image as background imageIt’s a custom theme sorry…
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
--- <div class="medium-4 columns noPad" style="background-color:green"> <div class="sectorPanel"> <? php $post_id = 43; $queried_post = get_post($post_id); ?> <h4 class="text-center primaryColor"><?php echo $queried_post->post_title; ?></h4> <p class="text-center whiteColor"><?php echo $queried_post->post_content; ?></p> </div> </div> ---
This is the code (if it posts)
Forum: Fixing WordPress
In reply to: How to add featured image as background imageHi Samuel Elh,
Unfortunately I’m working locally so there is not link :-s
Forum: Plugins
In reply to: [Vimeography: Vimeo Video Gallery WordPress Plugin] Playlist not appearingIt seems to relate to;
var slider = $gallery.find(‘.vimeography-thumbnails’).flexslider({
animation: “slide”,
namespace: ‘vimeography-bugsauce-‘,
controlNav: false,
animationLoop: false,
slideshow: false,
itemWidth: 186,
itemMargin: 8,
useCSS: false,
prevText: “<span></span>”,
nextText: “<span></span>”,
selector: “.vimeography-slides > li”
}).data(‘flexslider’);Forum: Plugins
In reply to: [Vimeography: Vimeo Video Gallery WordPress Plugin] Playlist not appearingI have done some digging and getting the following error;
Uncaught TypeError: $gallery.find(…).flexslider is not a function
I have disabled the plugins but still not working so not 100% sure what it could be?
Forum: Fixing WordPress
In reply to: How do I create shortcodesHi, thanks for getting back to me I was able to get it working but for some reason I am still getting “” appearing round the text.
function startDate($atts, $content = null) {
extract(shortcode_atts(array(
“from” => ‘$from’
), $atts));
extract(shortcode_atts(array(
“to” => ‘$to’
), $atts));
return ‘<h3>’.$content.'</h3>The date starts on ‘.$from.’ and ends on ‘.$to.”;}
add_shortcode(“datetext”, “startDate”);
With the following in the page/post
[datetext from=”10/09/2015” to=“13/09/2015”] The event will begin and end on the following dates;[/datetext]
Which then outputs the following;
The event will begin and end on the following dates;
The date starts on ”10/09/2015” and ends on “13/09/2015”
How Do I remove the “”?
Forum: Fixing WordPress
In reply to: Adding featured images to queries postsBrilliant thanks! ??