Also its just started showing the first 2 team members on one line and then the rest below. I am using the following shortcode : [ourteam col="4" show="-1" excerptlength="25" category="attractions"]
Can you see why its doing this?
Please understand the 4 columns on the top are already via shortcodes and one cannot have shortcodes within shortcodes and hence it doesn’t showcase WooCommerce products. You can directly place them on a page and link them to a section so either they will be displayed within a page or on the homepage like an independent section and not within any of them.
Hi, no mobile version is fine at 2 in a row, what they want is that the description is displayed under the images. If we used two in a row shortcode, the description in under the image, that is what they want but with 4 in a row in desktop view.
This still does not work. The order of team members is changed on the WordPress dashboard, but not on the Home Page Section or Page when using [ourteam] as the shortcode.
please i think i need an additional css for the skt resume theme.. when ever i set links (example: https://mydomain.com/#about) on the main menu, the main menu becomes permanently highlighted. i attached a screenshot of the problem for clarity purposes…
Also i would love to have a blog page (page that shows lets say 10 latest post), currently the skt resume theme dosent have a page that shows latest post except the home that only show 2 posts.. please i also need a solutionfor this problem, maybe a shortcode that i can use to embed blog into a page or any other solution….
Best Regards…
Hello, we have fixed the issue. All sections responded to the same code in front-data.php except for the section 3) If I added the id=”section3″ in the same line as the rest of the sections, it wouldn’t work at all. So I added it in the div. It works, but the sections jumps too high.
Here are the code and screenshot:
This is the working code for section 2 you can see where I added id=”section2″
—- `<!– Home Section 2 –>
<?php if($complete[‘hide_boxes_section2’] ==”){?>
<section class=”home2_section_area <?php if($complete[‘section2_bg_image’]){ ?>home2_section_area_bg<?php } ?>” <?php if(!empty($complete[‘section2_bg_video’])){ ?>data-vidbg-bg=”mp4: <?php $sec2bgvideo = $complete[‘section2_bg_video’]; echo do_shortcode($sec2bgvideo); ?>” data-vidbg-options=”loop: true, muted: true, overlay: false”<?php } ?> id=”section2″>
<div class=”center”>
<div class=”home_section2_content”>
<?php …`
—–
Here is the code for section 3. every time i added in the same spot it wouldn’t work in front end. You can see where I added the id because it doesn’t work if I add it to the same place.
I’m using the Wedding Videographer theme and don’t see how to add the video with the audio. I was able to add it as a background video, but that doesn’t play the audio. Is there shortcodes I’m missing somewhere?
We will have to do this for the SKT Biz or Corp theme. For the new ones shortcode is given.
If your developer can do it within header file well and good otherwise send us WordPress admin details and URL of the site via email: [email protected]
I found it myself. In case someone else need this. There are 2 options, first is fast, second is preferable:
1. you an edit the code in wp-content/themes/skt-gardening/sktframe/core-functions.php like this:
function clientbox($atts){
extract( shortcode_atts(array(
‘url’ => ‘url’,
‘image’ => ‘image’,
‘alt’ => ‘alt’
), $atts));
return ‘
<div class=”clientbox”> `
2. You can make a plugin for it (looks safer) where you can add other things as well. Create a folder eg: ‘my-thing’, put there a file in and name it ‘my-thing.php’, then put the following in that file:
<?php
/*
Plugin Name: My Thing
Description: some description
Author: your name
Version: 1.0
Author URI: http://your site
*/
// Shortcode MyClient
/*[myclient url="#" image="image" alt="alt"]*/
function myclientbox($atts){
extract( shortcode_atts(array(
'url' => 'url',
'image' => 'image',
'alt' => 'alt'
), $atts));
return '
<div class="clientbox">
<a href="'.$url.'" target="_blank"><img src="'.$image.'" alt="'.$alt.'" title="'.$alt.'" /></a>
</div>
';
}
add_shortcode('myclient','myclientbox');
Then use the shortcode [myclient] instead of [client].
Of course if someone knows other / better options the please share 😉
Author
Search Results
Viewing 15 results - 661 through 675 (of 2,044 total)