designvibe
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast Meta Box is blankI’m not sure if it is a conflict with elementor plugin also as I can’t edit a page in elementor with Yoast plugin active. When I deactivate Yoast elementor works.
Forum: Plugins
In reply to: [Yoast SEO] Yoast Meta Box is blankI am having the same issue across all my sites I have had to start using all in one SEO.
I’ve troubleshooted with default theme and only Yoast active and it is still doing it. https://ibb.co/CmC0JqV
Forum: Plugins
In reply to: [Yoast SEO] Elementor ConflictI have the latest WordPress and below versions which I also think are the latest versions.
Yoast: 21.8
Elementor: 3.18.3
Forum: Plugins
In reply to: [ITRO Popup Plugin] selected pages not workingI’m having this issue too on version 5
Forum: Plugins
In reply to: [Dynamic Featured Image] Pulling in the multiple imagesOK for anyone else who has this problem.
I got this working with the below tutorial.
https://ankitpokhrel.com/explore/get-more-out-of-featured-images-with-dynamic-featured-image-plugin/I just replaced the with <div>.
Forum: Plugins
In reply to: [Dynamic Featured Image] Pulling in the multiple imagesHow do you actually split these images up into separate divs?
<?php global $dynamic_featured_image; $featured_images = $dynamic_featured_image->get_featured_images( ); ?> <?php foreach($featured_images as $images) {?> <div class="1"><img src="<?php echo $images['full']; ?>" /></div> <div class="2"><img src="<?php echo $images['full']; ?>" /></div> <?php }?>
Thanks
Forum: Plugins
In reply to: [Easy Property Listings] Option to add images not showing?Oh yes!
Very good. Thanks!!!!
Forum: Plugins
In reply to: [Easy Property Listings] Option to add images not showing?Hi Merv,
Thanks for your help.
I added add_theme_support( ‘post-thumbnails’ ); to theme functions.php which has added the featured image option but there is still no gallery option to add more than the 1 image?
Thanks
Forum: Plugins
In reply to: [Dynamic Featured Image] Pulling in the multiple imagesBelow code might make more sense. I want “bg1” featured image 1, “bg2” featured image 2, so on…
<?php global $dynamic_featured_image; $featured_images = $dynamic_featured_image->get_featured_images( ); ?> <?php foreach($featured_images as $images) {?> <div id="bg1" style="background-image:url(<?php echo $images['full']; ?>)"><?php }?></div> <div id="bg2" style="background-image:url(<?php echo $images['full']; ?>)"><?php }?></div> <div id="bg3" style="background-image:url(<?php echo $images['full']; ?>)"><?php }?></div>
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pageLocations working fine in the search i just need to get the separate <form method=”GET” action=”YOUR_JOBS_PAGE_URL”> location working.
I have a website 99% done and just waiting on getting this bit working.
Please help ??
Thanks
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pagewas it wrong to add:
<label for=”search_location”><?php _e( ‘location’, ‘job_manager’ ); ?></label>
<select name=”search_location” id=”search_location”>
<option value=””><?php _e( ‘Select Location’, ‘job_manager’ ); ?></option>
<option value=”Aberdeen”><?php _e( ‘Aberdeen’, ‘job_manager’ ); ?></option>to job-filters.php it works in there but not in the separate <form method=”GET” action=”YOUR_JOBS_PAGE_URL”> form.
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pageCan you change
<input type=”text” id=”search_location” name=”search_location” />
to a list?
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pageI have the below working on the job search form, is there anyway of implementing it as a list in the keyword, location and category form instead of text field?
<label for=”search_location”><?php _e( ‘location’, ‘job_manager’ ); ?></label>
<select name=”search_location” id=”search_location”>
<option value=””><?php _e( ‘Select Location’, ‘job_manager’ ); ?></option>
<option value=”Aberdeen”><?php _e( ‘Aberdeen’, ‘job_manager’ ); ?></option>etc..
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pagePretty pants then.
What’s with salary not automatically showing as well? Pretty sure this is the most fundamental part of ANOYONE looking for a job EVER….
Forum: Plugins
In reply to: [WP Job Manager] Adding salary to custom search form on separate pageso it isn’t possible?