Search Results for 'amp'

Results from the Forum
Emil G
tagDiv Staff

Hi,

You have to edit the loop.php file, add a counter and a condition to place an ad after 2 posts and 10 posts, here is an example – http://pastebin.com/fF410fGD

Result – http://screencast.com/t/f1vjHFTX

Thank you, Emil G.

Lucian
tagDiv Staff

Hi,

In my example I also use the block 13 and because of the css I have pointed to you it looks like that and module 14 or block 13 are the same, the differences is that the block is build from modules.
So I have explained in the previous post that you can’t easily modify block 13 so that the title go under it so I gave you an example of css that you can use and you would start from there if you want to cutmize it so that it would look good.
This is the css I have used:

.td_module_14 .td-module-thumb {
margin-bottom: 100px;
}

.td_module_14 .meta-info {
bottom: -90px;
}

Hope it helps!

Thanks

Lucian
tagDiv Staff

Hi,

You could try another way. Add this code:

<ul><?php wp_list_categories('orderby=name&amp;include=25,26,27'); ?></ul>

…to the top of your sidebar in post page, like this: http://screencast.com/t/q41M8L7wf whwre 25,26,27 represent the ID’s of the subcategories you want to display in the sidebar.
So you have to add that code and replace 25,26,27 with the subcategories ID of your subcategories then use the default post page with post template “default” and sidebar on the right to check the result: http://screencast.com/t/tPDsadSpm3
Try it and let me know if you manage to do it.

Thanks

  • This reply was modified 11 years by Lucian.
agent314
tagDiv Member

Doesn’t look like it… but it’s calling a number of others…

<link rel='stylesheet' id='google-font-opensans-css'  href='http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&amp;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-ubuntu-css'  href='http://fonts.googleapis.com/css?family=Ubuntu%3A300%2C400%2C500%2C700%2C300italic%2C400italic%2C500italic%2C700italic&amp;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Clatin-ext%2Ccyrillic&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-pt-sans-css'  href='http://fonts.googleapis.com/css?family=PT+Sans%3A400%2C700%2C400italic&amp;subset=latin%2Ccyrillic-ext%2Clatin-ext%2Ccyrillic&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-oswald-css'  href='http://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&amp;subset=latin%2Clatin-ext&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-roboto-cond-css'  href='http://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700&amp;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-vollkorn-css'  href='http://fonts.googleapis.com/css?family=Vollkorn%3A400italic%2C700italic%2C400%2C700&amp;ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-style-css'  href='http://fonts.googleapis.com/css?family=Lato%3A400%2C700%7CDroid+Serif%3A400%2C700&amp;ver=4.0.1' type='text/css' media='all' />

Many of these I am not using at all.

  • This reply was modified 11 years by agent314.
simchris
tagDiv Member

You can avoid CSS import by not using a child theme.
You can remove query strings by using the functions I have previously recommended for adding to your functions.php file. You can also optimize your thumbnails by editing your functions.php file to set higher compression level for WP, and then run the “Regenerate Thumbnails” plugin.

Add these to bottom of your functions.php file, for one example:

function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );

add_filter( 'jpeg_quality', create_function( '', 'return 50;' ) );

add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}

You can optimize your site following the documentation for this theme:
https://forum.tagdiv.com/page-speed-guide/

simchris
tagDiv Member

Okay… as promised, here is some help for this based on what I’ve done in past for Newspaper, translated for what works with this theme. It may be that the italics are not loading properly due to the enqueue method; dunno. I posted this in your other thread, but will also post here for completeness.

(admin – correct me if wrong on any of this !)

Note that in the td_fonts.php file it does appear italic is specified to be loaded from line 889 (this whole block was found in functions.php in Newspaper theme for those who are moving over).

e.g.,

wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text

That “should” be loading the “normal” body font (400 weight) in both normal and true italic (vs oblique/slanted non-italic font).

Check your page source for a post to see if that is actually there.

Similarly at line 902 this is found; presumably this would be enabled and enqueued if selected from the theme fonts selectors:
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text

This has the light, normal, semi-bold, and bold weights, however does not have the italics, which I am not sure appends or replaces the main element at line 889.

Likely if one were so inclined they would edit the line 889 to add all the weights desired for Open Sans, remove the fonts and languages not being used, following the schema spit out from the Google Fonts website font builder:
http://www.google.com/fonts#UsePlace:use/Collection:Open+Sans

e.g., Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700

so, you could edit this code like so:
wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700'); //used on menus/small text

For expert users, one might actually remove that block from the td_fonts.php file entirely, edit the style.css to search/replace all fonts to Open Sans, then grab the CSS from Google’s server by loading the above URL in a browser, and putting all the styles at bottom of the style.css sheet (I actually did this for Newspaper on one site, for better PageSpeed Insights score).

I only provide these examples as possible solutions and they may not apply to you. Hope that helps somebody on this topic.

simchris
tagDiv Member

Note that in the td_fonts.php file it does appear italic is specified to be loaded from line 889 (this whole block was found in functions.php in Newspaper theme for those who are moving over).

e.g.,

wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text

That “should” be loading the “normal” body font (400 weight) in both normal and true italic (vs oblique/slanted non-italic font).

Check your page source for a post to see if that is actually there.

Similarly at line 902 this is found; presumably this would be enabled and enqueued if selected from the theme fonts selectors:
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text

This has the light, normal, semi-bold, and bold weights, however does not have the italics, which I am not sure appends or replaces the main element at line 889.

Likely if one were so inclined they would edit the line 889 to add all the weights desired for Open Sans, remove the fonts and languages not being used, following the schema spit out from the Google Fonts website font builder:
http://www.google.com/fonts#UsePlace:use/Collection:Open+Sans

e.g., Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700

so, you could edit this code like so:
wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700'); //used on menus/small text

For expert users, one might actually remove that block from the td_fonts.php file entirely, edit the style.css to search/replace all fonts to Open Sans, then grab the CSS from Google’s server by loading the above URL in a browser, and putting all the styles at bottom of the style.css sheet (I actually did this for Newspaper on one site, for better PageSpeed Insights score).

I only provide these examples as possible solutions and they may not apply to you. Hope that helps somebody on this topic.

mhernandez88
Participant
Add time - topic
#0

Hello everyone,

A simple question:

I would also add the date when publishing an article, which appears in both blocks (modules) me as articles. How could I?

For example:

11.27.2014 – 17:20

Thank you very much,

Miguel

gazgaz
Participant
#0

installed shop.
when ordering appears incomprehensible code.
Moreover, it appears only in IE.
In Google Chrome’s OK

ie:
http://s017.radikal.ru/i412/1411/d6/7edff2d60762.jpg

google chrome:
http://s57.radikal.ru/i155/1411/c8/cb9203cbeb45.jpg

this is my func file child-theme

<?php

/*  ----------------------------------------------------------------------------
    WordPress booster framework - this is our theme framework - all the content and settings are there
    It is not necessary to include it in the child theme only if you want to use the API
*/
if (!defined('TD_THEME_WP_BOOSTER')) {
	include TEMPLATEPATH . '/includes/td_wordpres_booster.php';
}

//Удаление цветовой схемы
remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );

//Редактирование полей в профиле
function modify_contact_methods($profile_fields) {
    // Add new fields
     //$profile_fields['twitter'] = 'Twitter Username';
     //$profile_fields['facebook'] = 'Facebook URL';
     //$profile_fields['gplus'] = 'Google+ URL';
       $profile_fields['dopplr'] = 'VK';
       $profile_fields['delicious'] = 'Battlelog';
	

    // Remove old fields
	unset($profile_fields['google']);
	unset($profile_fields['evernote']);
	unset($profile_fields['dribbble']);
	unset($profile_fields['digg']);
	unset($profile_fields['blogger']);
	unset($profile_fields['deviantart']);
	unset($profile_fields['forrst']);
	unset($profile_fields['github']);
	unset($profile_fields['googledrive']);
	unset($profile_fields['googlemaps']);
	unset($profile_fields['grooveshark']);
	unset($profile_fields['html5']);
	unset($profile_fields['lastfm']);
	unset($profile_fields['linkedin']);
	unset($profile_fields['myspace']);
	unset($profile_fields['path']);
	unset($profile_fields['picasa']);
	unset($profile_fields['pinterest']);
	unset($profile_fields['posterous']);
	unset($profile_fields['reddit']);
	unset($profile_fields['sharethis']);
	unset($profile_fields['slashdot']);
	unset($profile_fields['spotify']);
	unset($profile_fields['stackoverflow']);
	unset($profile_fields['stumbleUpon']);
	unset($profile_fields['tehnorati']);
	unset($profile_fields['sharethis']);
	unset($profile_fields['addthis']);
	unset($profile_fields['behance']);
	unset($profile_fields['tumblr']);
	unset($profile_fields['viddler']);
	unset($profile_fields['virb']);
	unset($profile_fields['windows']);
	unset($profile_fields['woordpress']);
	unset($profile_fields['zerply']);
	unset($profile_fields['paypal']);
	unset($profile_fields['yahoo']);
	unset($profile_fields['vimeo']);
	unset($profile_fields['rss']);
	unset($profile_fields['soundcloud']);

    return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');

//Удаление админбара для всех кроме админа
add_action('after_setup_theme', 'remove_admin_bar');

function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}

//логотип при входе
function my_login_logo(){

echo '

<style type="text/css">

#login h1 a { background: url('. get_bloginfo('template_directory') .'/images/logo.png) no-repeat 0 0 !important; }

</style>';

}
add_action('login_head', 'my_login_logo');

//Теперь нам необходимо сделать так, чтобы логотип ссылался не на сайт wordpress.org, а на наш с вами. 
//Тут тоже особо трудного ничего нет, добавляем всего лишь еще одну строку
add_filter( 'login_headerurl', create_function('', 'return get_home_url();') );

//Всплывающую подсказку что сайт работает на WordPress надо тоже убрать, и добавить свою фразу. 
//Тут нам поможет эта строка:
add_filter( 'login_headertitle', create_function('', 'return "Brothers in Games - Сообщество любителей поиграть вместе";') );

//убрали лого из админбара
add_action( 'wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}, 7 );

//убрали ненужные виджеты 
function shailan_remove_dashboard_widgets() {
    // Remove Quick Press Widget
    remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
    // Remove Incoming Links Widget
    remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );
    // Remove Recent Comments Widget
    remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );
    // Remove Latest Plugins Widget
    remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );
    // Remove WordPress Blog Widget
    remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
    // Remove Other WordPress News Widget
    remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' );
}  
add_action('wp_dashboard_setup', 'shailan_remove_dashboard_widgets' );

//удалили версию из футера админки
function my_footer_shh() {
    remove_filter( 'update_footer', 'core_update_footer' ); 
}
add_action( 'admin_menu', 'my_footer_shh' );

//удалили указание на вп в футере 
function remove_footer_admin () {
echo '';}
add_filter('admin_footer_text', 'remove_footer_admin'); 

//удалили таб помощи сверху
add_action('admin_head', 'mytheme_remove_help_tabs');
function mytheme_remove_help_tabs() {
    $screen = get_current_screen();
    $screen->remove_help_tabs();
}

//убрали метатег из хедера показывающий использование вп
function fjarrett_remove_wp_version_strings( $src ) {
     global $wp_version;
     parse_str(parse_url($src, PHP_URL_QUERY), $query);
     if ( !empty($query['ver']) && $query['ver'] === $wp_version ) {
          $src = remove_query_arg('ver', $src);
     }
     return $src;
}
add_filter( 'script_loader_src', 'fjarrett_remove_wp_version_strings' );
add_filter( 'style_loader_src', 'fjarrett_remove_wp_version_strings' );

//Hide WP version strings from generator meta tag
function wpmudev_remove_version() {
return '';
}
add_filter('the_generator', 'wpmudev_remove_version');

//скрытие пунктов меню слева от посторонних глаз
add_action( 'admin_init', 'my_remove_menu_pages', 999 );

function my_remove_menu_pages() {
    // If the user does not have access to publish posts
    if(!current_user_can('administrator')) {
        remove_menu_page('bsf-dashboard');
	remove_menu_page('wpcf7');
        remove_menu_page('edit.php?post_type=explandict');
        remove_menu_page('tools.php');
    }
}

// get the "author" role object
$role = get_role( 'author' );

// add "organize_gallery" to this role object
$role->add_cap( 'unfiltered_html' );

// убираем инфу о неправильном пароле при входе
add_filter('login_errors',create_function('$a', "return null;"));

// убираем из кода страницы упоминание о Yoast WordPress SEO plugin
add_action('get_header', 'rmyoast_ob_start');
add_action('wp_head', 'rmyoast_ob_end_flush', 100);
 
function rmyoast_ob_start() {
    ob_start('remove_yoast');
}
function rmyoast_ob_end_flush() {
    ob_end_flush();
}
function remove_yoast($output) {
    if (defined('WPSEO_VERSION')) {
        $output = str_ireplace('<!-- This site is optimized with the Yoast WordPress SEO plugin v' . WPSEO_VERSION . ' - https://yoast.com/wordpress/plugins/seo/ -->', '', $output);
        $output = str_ireplace('<!-- / Yoast WordPress SEO plugin. -->', '', $output);
    }
    return $output;
}
Arved007
Participant
#0

Well, I’ve spent some hours trying to get the best score with the Newsmag theme. Right now I’m about 88-90 on dekstop. That’s a good score for me.

http://www.anim-arte.com/

The problem it’s with the mobile score. Google Page Speed gives me something between 52 and 55, and mostly because of some unoptimized images. The images are indeed optimized, cos they are the same as the desktop version. These images are those that come from the slide. You can check the whole review here:

https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.anim-arte.com%2F&tab=mobile

Is there any way to prevent this?

Also, I think we should keep a post in this forum with the page speed topic, for tips and all that stuff. 🙂

Shauncam
tagDiv Member

Hi Lucian,

I’m still having issues with getting the Facebook app to open from my websit – caughtreport.com.au

I have a “Follow The Caught Report” option under each post – (example: http://caughtreport.com.au/ants-about-to-turn-your-home-into-caliphate/ and see photo below)
Example

When I click on the Facebook option it opens in the browser, not the Facebook application.

The Twitter and Google+ options open in their respective apps, but I can’t work out why the Facebook one doesn’t. This happens on all plug-ins or areas of the website I try.

I’ve tried looking for a solution, and have tried solutions such as using different links (fb://profile etc) but these don’t work and other solutions require coding for both Android and iOS, which I am a beginner at, and therefore attempting this may cause further problems. My main issues with this is where exactly to place the code.

Any help would be greatly appreciated. I think not having the Facebook application open is losing me subscribers as many people are not logged into FB on their browsers.

Cheers,

Shaun

tbiro0721
Participant
#0

Hi there, i have a question about the Mega Menu:

When I set one of my menus to a mega menu with 10-20 categories in it, it only shows the first 5, and the “All” option on the page.

Is it possible, to create the mega menu to be capable of showing more categories? For example in two rows or something? Or is it limited for 5 categories, so i can’t use mega menu with such a lot categories?

Looking forward to any suggestion, Thanks in advance!

etechexplorer
tagDiv Member

hi friends,

this is my site http://www.abcbloggingworld.com/

if see my site speed https://developers.google.com/speed/pagespeed/insights/?url=www.abcbloggingworld.com&tab=mobile

its very very low kindly help please

lalfieri
Participant
#0

Hi, i want to know where i can found the ID author to insert in Author Box widget, like the image https://scontent-a-mia.xx.fbcdn.net/hphotos-xpf1/v/t1.0-9/p280x280/10423779_10204718124093636_1048797646001331832_n.jpg?oh=b2d8ac41ded3e696cca43610f34b9992&oe=54DCECAE

Because i don’t want show all the registered users.

Sorry for the english, thanks

simchris
tagDiv Member

Well, then you would need to add them if you want those pages on your website, right?
WordPress docs: http://codex.wordpress.org/Pages

In WordPress, you can write either posts or Pages. When you’re writing a regular blog entry, you write a post. Posts, in a default setup, appear in reverse chronological order on your blog’s home page. Pages are for content such as “About,” “Contact,” etc. Pages live outside of the normal blog chronology, and are often used to present timeless information about yourself or your site — information that is always applicable. You can use Pages to organize and manage any content.

In addition to the generally required “About” and “Contact” Pages, other examples of common pages include Copyright, Disclosure, Legal Information, Reprint Permissions, Company Information, and Accessibility Statement.

  • This reply was modified 11 years by simchris.
sbo
Participant
#0

So i know the option for Related Posts are based on the category. Same with widgets. Is there a code that I can insert below posts for my custom code to display based on the category? For example, I am trying to display ‘code A’ in the ‘category 1’ section but not in ‘category 2’ section. Thanks in advance.

simchris
tagDiv Member

Actually … I think this is setup differently from Newspaper; in doing quick looksee, in the /includes/wp_booster/

I think one would *actually* edit the td_fonts.php

look at line 902

if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text

I think you would need to edit that to add in both the italic and the 200 font.

Wait for Lucian or Marius with official help, though. This was just me doing quick look-see. (I have not yet actually done this with NEWSMAG…!)

  • This reply was modified 11 years by simchris.
billiard83
Participant
#0

Hi awesome piece of work, we were halfway throuhg re-developing the site and youv’e bassically done what was envisioned and better, thanks!

First Issue:

Few issues, I seem to be getting a column issue, where the slider wont fit and modules afix themselves only to two third of the page, heres a dummy page example:

http://www.entrepreneurhandbook.co.uk/example/ – Any ideas?

Second Issue:

On the homepage for most of the images displayed, they all show different dimensions. Understand they were uploaded with different dimensions but is their no standard way to display images?

http://www.entrepreneurhandbook.co.uk/

Third Query:

Where can I change excerpt text and size? Havinga little trouble finding.

Fourth Issue:

On the slider where images are different dimensions, they don’t seem to auto fit the sldier, it just adds a grey bar depending on dimensions, any fix on this?

eg http://www.entrepreneurhandbook.co.uk/category/startups-business-startup-articles-help-and-advice/

Ideas:

Thought of adding ina sosicla shares counter like mashable? Would be awesome feature.

Thanks for the help it advance for the killer functionality!

David

mrpb
tagDiv Member

Same issue on my site. Twitter follower &amp; g+ count is not updating.

12familyde
Participant
#0

hi there …

Some results on the “search-result” page are looking a bit strange on my site. It shows up code (looks like a link-code), which should be invisible.

for example here: http://www.1-2-family.de/?s=geburt

Best regards
Torsten

dolphin24
Participant
#0

Hi, I have a google fonts tegs in my header.

<link rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext%2Ccyrillic%2Ccyrillic-ext&ver=4.0.1′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-font-opensans-css’ href=’http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-font-ubuntu-css’ href=’http://fonts.googleapis.com/css?family=Ubuntu%3A300%2C400%2C500%2C700%2C300italic%2C400italic%2C500italic%2C700italic&subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Clatin-ext%2Ccyrillic&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-font-pt-sans-css’ href=’http://fonts.googleapis.com/css?family=PT+Sans%3A400%2C700%2C400italic&subset=latin%2Ccyrillic-ext%2Clatin-ext%2Ccyrillic&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-font-oswald-css’ href=’http://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-roboto-cond-css’ href=’http://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700&subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-vollkorn-css’ href=’http://fonts.googleapis.com/css?family=Vollkorn%3A400italic%2C700italic%2C400%2C700&ver=4.0.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google-fonts-style-css’ href=’http://fonts.googleapis.com/css?family=Roboto+Condensed%3A400%2C700&ver=4.0.1&#8242; type=’text/css’ media=’all’ />

But I need only one font Open Sans.
How can I disable unused fonts?
Thanks

jchamp
Participant
#0

Hi There

I installed the theme onto my multi site and now I am getting this error on the top of the page

Warning: Invalid argument supplied for foreach() in /home/champion/public_html/wp-content/plugins/js_composer/include/classes/core/class-wpb-map.php on line 245

titikkoma
Participant
#0

Hi,
How do I enable the android and ios Bookmarks, like this..
http://prntscr.com/59t1ja
Thankyou

ajju23
Participant
#0

Hi TagDiv,

First of all thanks for this beautiful theme. It has improved my site’s performance. But I have a query, I want to show adSense ads on Archives between posts. How to do that ?

For example: If somebody selected a particular tag and category: How could I show the ads in between the resulted posts.

Kvr28
tagDiv Member

here you go, you can see several examples on this forum post, also it has a weird scroll affect, instead of going right to the postit goes to the top of the page and scrolls down it, I have never seen that before, any suggestions for that as well?

http://thehomesteadingboards.com/forums/general-homesteading-discussion-1/george-carlin-the-importance-of-stuff/#p39832

that the last question, I promise! 🙂

Viewing 25 results - 37,251 through 37,275 (of 38,683 total)