about - admin
Forum Replies Created
-
Question status -
-
Support StaffKeymaster
Hi Ismail,
thank you for posting! In the readme is stated that it’s universal guide for all our themes, and some features do not exist in other themes. Perses Mag uses text instead of logo, so that’s why there’s no logo.psd, it’s not needed.
You’re right about usage instructions, some screenshots are outdated since media library has changed. We’ll post video tutorials on this topic.
Slider is pretty simple, you can just add slides into it, turn it on or off through theme options, so, it can be removed. If you want something more advanced, you can disable default slider, and use plugin instead.
If you have more questions, feel free to ask.
Best regards,
SinisaNovember 17, 2014 at 1:33 pm #4804Support StaffKeymasterHi Jeanette,
theme you bought (and every our other theme) is fully working, and all the parts you see on theme demo are packed in theme.zip file. You don’t need Photoshop to finish anything with this theme (I assume you’ve read docs about changing the logo, but theme you’ve bought doesn’t have logo/image, it uses plain text in site title). Even if it uses logo/image, there’s free alternative to Photoshop and it’s called Gimp which you can use to edit logo.psd that comes with our older themes.
If this is not the case, please describe what you mean by “not all the parts are available”, we’re here to help. Let us know!
Best regards,
SinisaNovember 16, 2014 at 8:44 pm #4799Support StaffKeymasterHi Nick,
are you sure you’ve set custom fields good? Make sure it’s slide, not Slide or SLIDE.
If this is not the case, please send me admin login info, I’ll test it (mark reply as private).Best regards,
SinisaNovember 14, 2014 at 10:44 am #4793Support StaffKeymasterHi Shane,
We’re sorry if you’re having troubles.
Now, we do not allow such thread titles, we stand behind our products, and we’re here to fix the problem if exists.
Official version of theme is the same as free, with difference in links. So, if you used our free version (from this site), then there should be no errors in switching to paid version, they are the same.
If theme has bug, or error, re-uploading files will not fix that. If there’s error, you’ll have it from the beginning, and once you re-upload it. So, something else is the problem here, but if it’s theme fault – be sure we’ll fix that!
Please describe the problems. What you re-uploaded and why? What wasn’t working? URL?
Best regards,
SinisaNovember 6, 2014 at 10:15 am #4761Support StaffKeymasterI just resent purchase receipt to Joyce, so she’ll be able to download theme from email link.
Regards,
SinisaNovember 5, 2014 at 6:42 pm #4753Support StaffKeymasterSorry if I wasn’t clear enough. Yes, in functions.php. You can add filter
add_filter( 'hybrid_site_title', 'my_custom_image' );
after this line
add_theme_support( 'automatic-feed-links' );
Then function:
function my_custom_image( $title ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; $title = get_bloginfo( 'name' ); $site_url = get_option( 'siteurl' ); $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>'; $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img ); return $title; }
After ending } of theme setup function. To be super clear you’ll add it after this:
add_theme_support( 'automatic-feed-links' ); add_filter( 'hybrid_site_title', 'my_custom_image' ); }
Regards,
SinisaOctober 29, 2014 at 9:39 am #4726Support StaffKeymasterHi Henny!
1. The same way as you did for Artemis, with one key difference:
add_filter( 'hybrid_site_title', 'my_custom_image' );
It’s not {$prefix}_site_title but hybrid_site_title (for newer themes).
2. Upload that image to HeradinoMag/images folder, name it for example hover-image.png. Then find this in style.css .featured-post-title. Replace
background: #000;
with
background: url(images/name-of-the-image.png) no-repeat;
October 28, 2014 at 3:35 pm #4723Support StaffKeymasterHi Krissana,
I had to modify index.php a bit to get this working. Please backup theme.
Theme will show now the excerpts on front page and other pages, and it will skip short codes, but you need to enter excerpts manually for each post.If you don’t know what excerpt is, or how it’s done, just open “En Suite Bathroom” post and scroll bellow the post editor. You’ll see a field “Excerpt” and enter there post description which will show up on front page. Excerpts are hidden by default, and you can enable them in “Screen options”.
Regards,
SinisaOctober 27, 2014 at 8:26 am #4711Support StaffKeymasterYes, I was asking for your WordPress login details, and these are not working too. Please try before you post. Thanks in advance!
October 26, 2014 at 9:26 am #4708Support StaffKeymasterIt’s wrong password or username, please double check.
October 25, 2014 at 1:48 pm #4706Support StaffKeymasterHi Krissana,
please leave me your username and password once again. The old one’s don’t work anymore (mark reply as private).
October 25, 2014 at 9:56 am #4704Support StaffKeymasterHey Henny,
you’re not suppose to change function name here:
add_filter( "{$prefix}_site_title", 'my_custom_image' );
Leave that.
my_custom_image is name of the function in which you’ll change the image.In this function:
function my_custom_image( $title ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; $title = get_bloginfo( 'name' ); $site_url = get_option( 'siteurl' ); $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>'; $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img ); return $title; }
this will call the image, and this is where you need to add image URL:
<img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" />
You need to set change “URL TO YOUR IMAGE”, and set link to the image (full link, like https://my-site.com/myimage.jpg).
I hope it’s more clear now. If you still need help, feel free to ask!
October 24, 2014 at 6:45 pm #4702Support StaffKeymasterHi Henny!
In functions.php in swt_theme_setup() function (after $prefix = hybrid_get_prefix(); ) add this:
add_filter( "{$prefix}_site_title", 'my_custom_image' );
Now add this function before swt_analytics2() function:
function my_custom_image( $title ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; $title = get_bloginfo( 'name' ); $site_url = get_option( 'siteurl' ); $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>'; $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img ); return $title; }
Just replace
URL TO YOUR IMAGE
with your image URL and that’s it.October 24, 2014 at 3:51 pm #4700Support StaffKeymasterHi,
theme doesn’t natively supports drop downs, but we’re willing to add drop downs if buyer requests that. If you purchase it, we’ll add it.
Best regards,
SinisaOctober 17, 2014 at 12:25 pm #4693