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 😉
I like very much your shortcode for [client] like this: [client url=”#” image=”image url”]
But is it also possible to specify the alt=”alt” and title=”title” for the image?
Is this something I can try to add myself? But where should I search?
Kindly use page template full wide in pages>edit>right sidebar under page attributes>select full width template to have no sidebar. Or else go to appearance>widgets and then add HTML widget and paste shortcode in there to replace the default widget and instead show what you add there.
Replace our section area and hide it and then use a shortcode of plugin like nextgen gallery or something similar which opens up several images in lightbox when clicked on a single image.
Nevermind, I used a social icon plug in with shortcodes and replaced the native code with it. I don’t know why the theme default icons are not working, but at least this issue is resolved for me.
Thanks for the help. I found a plugin, but it requires shortcode knowledge… Which unfortunately I don’t have.
Any other suggestions, you’ve helped greatly in the past? My website is: https://saudadesdeportugal.nl/
Author
Search Results
Viewing 15 results - 661 through 675 (of 2,038 total)