-
AuthorSearch Results
-
June 29, 2015 at 6:12 am #8618
In reply to: No featured image displayed on page
Hi Mike,
You need to handle with some code here. We can add this feature but what we have done is have had the option to show slider in inner pages. You have to get inside header.php and apply a condition so that you can have featured images of pages loaded up in the header area for inner pages.
If you are a developer you can do it easily.
If not then we can help you.
Regards,
ShriJune 23, 2015 at 5:26 am #8358In reply to: Slider Speed
I am using the “Build” (Construction) theme and the sliders move very fast. How do we slow them down? I don’t mind gong in to the CSS or php file if you can tell me.
June 22, 2015 at 6:00 am #8312Changes done in theme options and things added in Custom CSS would be retained in update as well. But changes done within theme files like php changes can’t be retained.
Regards,
ShriJune 18, 2015 at 7:31 am #8140In reply to: I have Gravida Pro Theme, where do I get support?
Hello
Thx
I was trying to send email directly with attachment or question on how to..
Since I need to send you attachment, I choose to email.. this is what i get.****
This is the mail system at host relay.mailchannels.net.
I’m sorry to have to inform you that your message could not
be delivered to one or more recipients. It’s attached below.For further assistance, please send mail to postmaster.
If you do so, please include this problem report. You can
delete your own text from the attached returned message.The mail system
<[email protected]>: host sktthemes.net[23.91.65.239] said: 550 No Such
User Here” (in reply to RCPT TO command)June 17, 2015 at 12:14 pm #8102The thumbnail images align to the left in single column when viewed with Internet Explorer. Everything looks good in Chrome and Firefox. The problem is NOT not there if I switch to Full Width. There seems to be a problem with the Photo Session theme.
http://www.compoconst.com/index.php/nggallery/galleries/beach-gallery?page_id=292
June 16, 2015 at 10:14 am #8024In reply to: I have Gravida Pro Theme, where do I get support?
Sorry about it.
Picture size for the latest Blog: Actually keep same sized images. So if the first one is 300 by 200 then keep the rest as 300 by 200 to have them same sized and look identical in front end.
Go to Appearance>Editor>index.php line number 93
<div class=”section-title”><?php _e(‘Latest Blog’,’gravida’); ?></div>
Within single quotes ‘Latest Blog’ Only change wording to Latest News. Keep quotes and rest as it is.
Save/Update the file.
Regards,
Shri
June 16, 2015 at 10:03 am #8023In reply to: I have Gravida Pro Theme, where do I get support?
Can we do it here?
I post under Gravida sub forum a few days back but no reply
I like to change the title “Latest Blog” to “Latest News”. Where can i do it? DB or php file?
Regards
Yong
June 15, 2015 at 6:55 am #7969In reply to: SKT Corp / Missing tagline in PRO version
Hi,
Via admin we can’t edit any of the files. It seems you have hardened security. So here is your answer. Kindly check header.php file in SKT Corp Pro and check this line of code:
<div id=”logo”><a href=”<?php echo home_url(‘/’);?>”>
<?php if( of_get_option(‘logo’, true) != ” ) { ?>
<img src=”<?php echo esc_url( of_get_option(‘logo’, true) ); ?>” />
<?php } else { ?>
<h1><?php bloginfo( ‘name’ ); ?></h1>
<p><?php bloginfo(‘description’); ?></p>
<?php } ?>
</a>
</div>
Under <img src=”<?php echo esc_url( of_get_option(‘logo’, true) ); ?>” /> Place this code:
<p><?php bloginfo(‘description’); ?></p>
Regards,
Shri
June 10, 2015 at 10:46 am #7797In reply to: Translate the READ MORE buttons in section 1
Hi,
Kindly check header.php (appearance>editor>header.php). Still not check functions.php
Kindly find read more and translate it. Better way would be opening up of the language pot file within theme folder in POEdit and editing the strings and saving it.
Rename the pot to your language like: fr_FR.pot
And then replace the pot file we have with your new one.
And write this in wp-config: define (‘WPLANG’, ‘fr_FR’);
That’s it.
Regards,
ShriJune 8, 2015 at 5:46 am #7690In reply to: Slider Question
Yes you would have to remove the code in header.php
Or show us your website we can send you simple instruction of doing it using css.
Regards,
ShriJune 6, 2015 at 6:01 pm #7654If this is the navigation menu code…
Normal
0false
false
falseEN-US
X-NONE
X-NONE/* Style Definitions */
table.MsoNormalTable
{mso-style-name:”Table Normal”;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:””;
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:”Calibri”,”sans-serif”;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;}<div class=”nav”>
<?php wp_nav_menu( array(‘theme_location’ => ‘primary’) ); ?>
</div><!– nav –><div class=”clear”></div>
How do I create an additional navigation at the top of the website aligned right, above the slider? I have already created a search box there… which is currently aligned left.
I would also like to decrease the header height so that it is the height of the navigation menu only. I won’t be using the title and logo space within the header.
June 3, 2015 at 4:15 pm #7541In reply to: How to not show featured image on blog posting
I am also looking for the specific code to alter that will remove the featured image from the top of the blog post. Can seem to locate it in single.php though:
get_header(); ?>
<div class=”content-area”>
<div class=”middle-align content_sidebar”>
<div class=”site-main” id=”sitemain”>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘single’ ); ?>
<?php skt_white_content_nav( ‘nav-below’ ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || ‘0’ != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div>
<?php get_sidebar();?>
<div class=”clear”></div>
</div>
</div>
<?php get_footer(); ?>
June 3, 2015 at 12:28 pm #7526In reply to: Change Sub Menu Background Color
Hei Shri,
I have put it that way:
<h1 class=”entry-title” style=”color:#000000;”><?php the_title(); ?></h1>
should i do it differently?
Greetins,
Triin
June 2, 2015 at 11:22 am #7467In reply to: Change Sub Menu Background Color
The initial top <div class=”site-main” id=”sitemain”> is here and the rest is in content-single.php
Regards,
Shri
June 2, 2015 at 8:52 am #7462In reply to: Change Sub Menu Background Color
Hei Shri,
Thanks for your advice. Where should i put it exactly? Maybe it it some other file than single.php? This is what I have at the moment in single.php file:
<?php
/**
* The Template for displaying all single posts.
*
* @package SKT Black
*/
get_header(); ?>
<div class=”content-area”>
<div class=”middle-align content_sidebar”>
<div class=”site-main” id=”sitemain”>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘single’ ); ?>
<?php skt_black_content_nav( ‘nav-below’ ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || ‘0’ != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div>
<?php get_sidebar();?>
<div class=”clear”></div>
</div>
</div>
<?php get_footer(); ?>
-
AuthorSearch Results
Search Results for 'php'
-
Search Results
-
The thumbnail images align to the left in single column when viewed with Internet Explorer. Everything looks good in Chrome and Firefox. The problem is NOT not there if I switch to Full Width. There seems to be a problem with the Photo Session theme.
http://www.compoconst.com/index.php/nggallery/galleries/beach-gallery?page_id=292