Franc Coenen
asked 10 years ago

Hi, I have installed the Focus thema at a demowebsite, so I can learn more about the thema before swichting my newssite to it. I have a few problems / questions.
 
1 If i click 3D Printing I go to this category. That’s fine. But if I click CNC verspanen in the menu, the whole site jumps to the right. I have tried this on several computers (PC and Mac) with several browsers (Firefox, Chrome an IE) and it always jumps. How can I solve this?
 
2 The screenshot of you demosite shows in the header 2 sponsored links and a small banner. I like that more than the big banner. How can I change this?
 
3 Is it possible to change this theme in a way that if I click on the photo in the newsslider on the homepage, you open the article (now you have to click on the title).
 
4 I have an existing site. With a few things to change I’m happy with Focus as it now looks. Can I somehow copy the theme with al the adjustmens to the other site (and then delete the testsite) or do I have to make the adjustments again.
 
Thanks
Franc
PS: can you give me an indication about the cost if you make some customisations, like getting rid of the author next to an article and do some colorchanges?

2 Answers
DominicStaff
answered 10 years ago

1. I have checked two category pages on your site and everything still works fine. Could you please send us screenshots for further checking?
2. you can log in to Dashboard > Appearance > Widget > add the Text widget to Header section, then add the following code to the Text widget:

<div class="row widgets-sidebar-header">
    <aside class="widget widget_text span3" id="text-25">
        <h3 class="widget-title">Sponsor link</h3>     
        <div class="textwidget">
            <div class="ads ads-60">
                <a title="Multi Grids Responsive with JigoShop" href="http://bit.ly/tf-wallclassic" class="ads-thumb">60 x 60</a>
                <div class="ads-inner">
                    <h5 class="ads-title"><a title="Multi Grids Responsive with JigoShop" href="http://bit.ly/tf-wallclassic">WallClassic</a></h5>
                    <span class="ads-meta">Ads by <a title="Responsive WordPress Themes" href="http://designwall.com">DesignWall</a></span>
                </div>
            </div>
        </div>
    </aside>

    <aside class="widget widget_text span3" id="text-26">
        <h3 class="widget-title">Sponsor link</h3>     
        <div class="textwidget"><div class="ads ads-60">
            <a title="Responsive Portfolio WordPress Theme" href="http://bit.ly/cm-simplex" class="ads-thumb">60 x 60</a>
            <div class="ads-inner">
                <h5 class="ads-title"><a title="Responsive Portfolio WordPress Theme" href="http://bit.ly/cm-simplex">DW Simplex</a></h5>
                <span class="ads-meta">Ads by <a title="Responsive WordPress Themes" href="http://designwall.com">DesignWall</a></span>
            </div>
        </div>
    </div>

    </aside>
    <aside class="widget widget_text span3" id="text-20">
        <div class="textwidget"><div class="ads ads-230x60">
            <a title="Responsive One Page WordPress Theme" href="http://bit.ly/ZgNf6q" class="ads-thumb">230 x 60</a>
            <span class="ads-meta">Ads by <a title="Responsive WordPress Themes" href="http://designwall.com">DesignWall</a></span>
        </div>
    </div>
    </aside>                  
</div>

3. To resolve this issue, you can open the dw-focus-slider.php file in the folder path “wp-content\themes\dw-focus\inc\widgets” go to line 86 Replace the following code:


<?php the_post_thumbnail('slider-thumb');  ?>

…with new code:


<?php echo '<a target="" href="'.get_permalink().'">'.get_the_post_thumbnail( get_the_ID(), 'slider-thumb' ).'</a>'; ?>

4. If you don’t want to lost all changes that you customized, please mark and copy all files that you edited into somewhere on your computer. After finishing, you add all codes that you customized to your new theme.
– Could you kindly let us know exactly your request about the customization for the DW Focus theme ? If you just want to remove  the author next to an article and do some color changes, I will help you resolve it with few line code.

Franc Coenen
replied 10 years ago

Hi Dominic,

I don’t know anything about programming, so I still haven’t made the foto in the nuewsslider clickable. The site is already online, but there are a few things I want to change.
If you look at the tab menu on the homepage, although the original pictures (upper row, first 3) have the same size, they don’t appear at the same size in the tab menu. I am doeing something wrong?
If I place more tabs in de lower menu, it doesn’t functione good. That’s why I removed the tabs. When I clicked a tab, nothing happened in the lower tab menu, but in the upper one.
Can you give me a code line for the CSS so I can let disappear al the author info next to a post?

The problem from bulletpoint 1 from my original mail is still there.

Greetings
Franc

Dominic Staff
replied 10 years ago

You send me your site for further checking.

Franc Coenen
replied 10 years ago

Dominic

http://www.made-in-europe.nu
If you sent me your email adres, I can provide you log in details

DominicStaff
answered 10 years ago

– You can tell me detail about this issue, or send me a screenshot for further checking.
At the moment, DW Focus does not support this issue.
– Popular News widgets will show posts that have most views from your site, if another posts do not have enough views to join the top, it will not be shown. So Popular News widget will show same posts for a long time.
 please use another plugins  that support the popular posts widget to help you resolve problem and improve your page’s traffic, you can find the plugin here:  http://wordpress.org/plugins/search.php?q=popular+post&sort=

– If you don’t want every word of the title in the menu start with a capital, you can add the following code to the Header Code (Dashboard > Customize > Custom Code)

.navbar .nav .menu-item-object-category .sub-mega-wrap .subcat a { text-transform:lowercase; }

To translate as “days , mins, hours, seconds, ago ” in the theme, you can open the functions.php file in the folder path “\wp-content\themes\dw-focus”. Find the line 292 to line 333.
Also, you can find here for the document guide: http://codex.wordpress.org/Translating_WordPress
 
To hide the author info next to a post, you can add the following code to the Header Code:

.single-post .entry-action .co-author {    display: none; }

– To change color link in the single post, you can add the following code to the Header Code:

.single-post .entry-content a { color: #....; }
.single-post .entry-content a:hover { color: #...; }

Hope this helps !

Powered by DW Question & Answer Pro