Search Results for 'strange'

    No search results were found in Documentation!

Results from the Forum
barelliluca
tagDiv Member

Hi Alin, thank you for your reply!
I was testing this on chrome desktop via a spoofin agent plugin set to iPhone iOS.
I’m not the only one experiencing this issue but Emil has already replied to me on Envato platform saying that this is working as expected.
Anyway this is very strange to me since in v4 I was able to achieve this with the Big Grid:

View post on imgur.com


p.s. the second image is weird but is a bug related to my screenshot plugin =)

Any ideas, please?
Thank you for your great support!

mwaginger
tagDiv Member

Hello,
thanx for advices, i tried to disable speed booster but it did not help.
Forum the index part http://www.uspornaziarovka.sk/forum/diskusne-led-forum/ is builb by shortcodes.
then the individual forums there are only 4 are jus URLs. What I realized is that when I try to open individual forum you can see that the search box and button has the CSS applied, but the rest of the page not. strange.
any idea?

mirage22
Participant
#0

Hello,

I was using a different theme till i purchased the newspaper theme a few hours ago.

The installation was smooth.

But i cannot edit existing posts or create new posts as the visual editor is not showing up.

Yes, visual composer etc is installed. I have also flushed my cache and disabled super cache and my plugins are minimal. They are actually the ones in your approved list.

Now there is a strange problem. If i run phpinfo() i can see that the memory limit is 512mb and max execution time is 3000. But the theme is reporting memory as 40mb and execution time as 30. There is no separate directive in wp-config, but i created the same php increase settings in wp-config to seeif it helped but that too hasn’t worked. I am stumped.

I guess I am facing the issue cause of tinymce. Can i disable it? Have i not read some direction that you gave?

Sofian
Participant
#0

I have a really strange thing here. My posts are all set to style9, and I copied single_template_9.php into my child-theme folder, but no matter what I edit there, the output stays the same. It is like this file is not taken into consideration. I also added teststrings to the HTML output and checked in the source code, it is simply not there. Editing page.php or the loop-single-9.php does show up in the output, so the child-theme works, and apparently it uses the style9 template, but I can not edit it.

Do you have a clue? To recreate, please simply copy the file into your childtheme and change something, for example <article id=”444test444″…
then call a post that has style9 and check the source code … still shows its good old post-XX ID, so definetely this file is not read. But then what else is used?

My aim is to use the td_1068x580 as featured image instead of 1068×0, and for this I need to change it in the post template, which should be exactly this one.

Thanks for a hint on where I find what I am searching for 🙂

Alin [tagDiv]
tagDiv Staff

Hi,

Please regenerate your thumbnails – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ you don’t have to use custom css if your images are large enough to be cropped.

Thanks!

Marius
tagDiv Staff

Hi,

I see that you have modified the style.css file manually and have strange characters. http://screencast.com/t/r7YS79v0bzJ

please remove the custom css from there and add it in Theme Panel -> Custom CSS section, without all those text comments. http://screencast.com/t/PBFVIhRB8 and see if works.

Thanks for the message!

Ben Iskander
tagDiv Member

Hi Alin,

yes I do and have disabled it on that page – now it’s all working 🙂

Strange that it stops the whole page loading though – normally it just stops any particular ad.

Thanks a lot,

James

julingn
tagDiv Member

Yes, I cleared cache after both css snippets. Very strange, but good that it worked for you, hhealth.

cem
tagDiv Member

the slider gets messed up by the speedbooster plugin, sooo…here is the code 😉 as I don’t know what I did other than the performance improvement tips ( Is this required? As the performance drops from 93 to 91 after activating it).

<?php
/*
	Plugin Name: tagDiv Speed Booster
	Plugin URI: http://tagdiv.com
	Description: Speed booster for Newspaper and Newsmag theme - It moves the styles and all the scripts of the theme to the bottom when needed. It activates internal theme optimizations for better speed and it adds async js .
	Author: tagDiv
	Version: 3.2
	Author URI: http://tagdiv.com
*/

/*

    3.2 - better bbpress support on newsmag
    3.1 - fixed issue with flashing white on load on newspaper theme
        - better compatibility with themes that do not have wp booster framework
        - Newsmag loads fonts in a bundle now
    3.0 - better visual composer support
    2.8 - Newsmag support added :)
    2.7 - fixed ie 9 10 11 window resize bug
    2.6 - fixed rendering bug on the loading of the page
    2.5 - code improvements, newspaper 4 compatibility
        - makes most of the javascript files use defer parsing
        - better compatibility with revolution slider
    2.4 - updated jquery version
        - support for https
    2.3 - fixed warnings when trying to move javascript files that are not registered
 */

define('TD_SPEED_BOOSTER' , 'v3.2');

class td_speed_booster {

    var $styles_for_footer = array(); // here we keep all the stylesheets IDs that we want to move to the footer

    var $is_ie = false; // if the browser is detected as IE, treat it differently

    var $async_js_scripts = array(
        'contact-form-7',
        'bbpress',
        'woocommerce',
        'site',
        'devicepx',
        'js_composer_front'
    );

    var $td_theme_name = '';
    var $td_theme_version = '';
    var $td_deploy_mode = '';

    function __construct() {
        add_action('td_wp_booster_loaded', array($this, 'td_wp_booster_loaded'));
    }

    function td_wp_booster_loaded() {
        // read the theme version and name if defined
        if (defined('TD_THEME_VERSION') and defined('TD_THEME_NAME') and defined('TD_DEPLOY_MODE')) {
            $this->td_theme_version = TD_THEME_VERSION;
            $this->td_theme_name = TD_THEME_NAME;
            $this->td_deploy_mode = TD_DEPLOY_MODE;
        } else {
            return;
        }

        // detect IE 8 9 10 11
        if (!empty($_SERVER['HTTP_USER_AGENT']) and (preg_match('~MSIE|Internet Explorer~i', $_SERVER['HTTP_USER_AGENT']) || (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') !== false))) {
            $this->is_ie = true;
        }

        // add hooks
        add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts_hook'), 1002);  // 1002 priority - because visual composer has 1000 and we use 1001 in the wp010 theme
        add_action('wp_footer', array($this, 'wp_footer_hook'), 15);
        if ($this->is_ie === false) {
            add_action('wp_head', array($this, 'wp_head_hook'), 15);
        }
    }

    function enqueue_scripts_hook() {
        global $wp_scripts;

        //detect revmin - revolution slider and do not move jquery
        if( !is_admin() and !isset($wp_scripts->registered['revmin'])){
            if (is_ssl()) {
                $td_protocol = 'https';
            } else {
                $td_protocol = 'http';
            }

            wp_deregister_script('jquery');
            wp_register_script('jquery', ($td_protocol . '://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'), true, '1.11.1', true);
            wp_enqueue_script('jquery');
        }

        if ($this->td_theme_name == 'Newsmag') {
/*             wp 010*/
            $this->move_style_to_footer('js_composer_front');
            $this->move_style_to_footer('js_composer_custom_css');
        }

        // Newsmag dosn't move the css to the bottom as such, bbpress should stay at the top
        if ($this->td_theme_name != 'Newsmag') {
            $this->move_style_to_footer('bbp-default-bbpress');  //bpress old
            $this->move_style_to_footer('bbp-default');  //bpress
            $this->move_style_to_footer('google-font-rest');
            $this->move_style_to_footer('contact-form-7');
            $this->move_style_to_footer('genericons');
            $this->move_style_to_footer('jetpack');
            $this->move_style_to_footer('jetpack-widgets');
            $this->move_style_to_footer('jetpack-subscriptions');
			$this->move_style_to_footer('sharing-css');

        }

        /**
         * Move the style only on newspaper
         * @todo move the style also on newsmag after we fix all the issues
         */
        if ($this->is_ie === false and $this->td_theme_name == 'Newspaper') {
            $this->move_style_to_footer('td-bootstrap');
            $this->move_style_to_footer('td-theme'); //this is the main style of the theme, it depends on td-bootstrap to load
        }

        $this->move_style_to_footer('woocommerce_frontend_styles');

        //jetpack lost styles
        $this->move_style_to_footer('jetpack-subscriptions');
        $this->move_style_to_footer('jetpack-widgets');
        $this->move_style_to_footer('genericons');
        $this->move_style_to_footer('jetpack');
        $this->move_style_to_footer('td-theme');
		$this->move_style_to_footer('sharing-css');

        /**
         * move javascript to footer
         */
        $this->move_js_to_footer('themepunchtools');
        $this->move_js_to_footer('revmin');

        // remove strange custom.css file loaded by visual composer
        wp_deregister_style('js_composer_custom_css');

        // replace comment-reply.min.js with inline version

    }

    function wp_footer_hook() {
        //get the theme version for style
        $current_theme_version = $this->td_theme_version;

        //on demo mode, autogenerate version hourly + day
        if ($this->td_deploy_mode == 'demo') {
            $current_theme_version = date('jG');
        }

        foreach ($this->styles_for_footer as $style_id => $style_src) {
            echo "<link rel='stylesheet' id='" . $style_id . "-css'  href='" . $style_src . "?ver=" . $current_theme_version . "' type='text/css' media='all' />\n";
        }
    }

    function wp_head_hook() {
        if ($this->td_theme_name == 'Newspaper') {
            echo '<style>body {visibility:hidden;}</style>';
        }
    }

    function move_style_to_footer($style_id) {
        global $wp_styles;
        if (!empty($wp_styles->registered[$style_id]) and !empty($wp_styles->registered[$style_id]->src)) {
            $this->styles_for_footer[$style_id] = $wp_styles->registered[$style_id]->src;
            wp_deregister_style($style_id);
        }
    }

    function move_js_to_footer($js_id) {
        global $wp_scripts;
        if (isset($wp_scripts->registered[$js_id])) {
            wp_enqueue_script($js_id, ($wp_scripts->registered[$js_id]->src), '', $wp_scripts->registered[$js_id]->ver, true);
        }

    }

    function async_js_hook($url) {
        //check to see if we have js
        if (strpos( $url, '.js' ) === false) {
            return $url;
        }
        if ($this->strpos_array($url, $this->async_js_scripts) === false) {
            return $url;
        } else {
            return "$url' defer='defer";
        }
    }

    private function strpos_array($haystack_string, $needle_array, $offset=0) {
        foreach($needle_array as $query) {
            if(strpos($haystack_string, $query, $offset) !== false) {
                return true; // stop on first true result
            }
        }
        return false;
    }

}

new td_speed_booster();
  • This reply was modified 11 years by cem.
Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure that you enable thumbs on blocks from Theme Panel > Block settings and then try to regenerate your thumbnails using this guide – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/

Thanks!

News
Participant
#0

Hello!
We have a problem with pagination. It looks very strange on a post page. Please help us to fix it.
Page example: http://metronews.net.ua/news/kubiv-prizyvaet-narodnyh-deputatov-podderzhat-zakonoproekty-po-besplatnomu-obespecheniyu-uchebnikami/

Thanks.

Alin [tagDiv]
tagDiv Staff

Hi,


@Christopher
thanks!


@vtobing
You can change the color of the Grid line on Newsmag theme if you want this – http://screencast.com/t/9wYZwr0k
1. Please try Christopher suggestion and use Regenerate thumbnails – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ anyway I have checked your homepage and the thumbnails are displayed fine – http://screencast.com/t/EafYUovZba

2.
a. Not sure why do you have this issue, if you have articles on Featured category it should be displayed also on Big Slider.
b. You can use this custom css in Theme Panel > Custom Css for Big Slider arrows – http://screencast.com/t/DtyeieMwq8e

.iosSlider.td_block_big_grid .td-icon-left, .iosSlider.td_block_big_grid .td-icon-right {
color: red !important;
}

Also for normal slider you can add a background to the arrows – http://screencast.com/t/bDrHvF5t7u

.iosSlider .prevButton, .iosSlider .nextButton {
background-color: red;
}

3. You can try to change the post style as default from Theme Panel > Post Settings – http://screencast.com/t/SoPnjVmiAjRR This option is overwritten by the ‘Post template’ option from the backend – post add / edit page.

4. To improve the pagespeed score please check if the following optimization are done on your side – https://forum.tagdiv.com/how-to-make-the-site-faster/ – and this one – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/

Thanks!

nelito
Participant
#0

Just installed the theme, everything was fine but i noticed something very strange. Some users can’t access the site when they click at links posted at my Facebook Page. I’ve noticed that the majority of them are using Android Phones. Since 80% of My traffic comes from Facebook and mobile, i deactivated the theme

URL: http://www.sensacionalista.com.br

jeffymac11
Participant
#0

Hello,

Would you mind taking a look at my site and telling me why the main menu shows white squares in place of the down arrows? And also the social link a the top left is showing some strange white line in place of the Facebook symbol? The search box also has a white square in place of the search symbol.

http://www.rightwingreport.com/

Thank you

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately Newsmag theme was initially designed at this width – 1021px – with an fixed grid layout, responsive as it is fluid and style for desktop/tables/mobile screens. So changing the width would not be easy as it needs changing the width value for all elements on pages and for this you would need custom work. Also on pages you can use full width row to display your add your banner/ad – http://screencast.com/t/0c0sCetT
If you have basic css/html experience and you want to do this for post pages please check this topic, but you may need additional customziations – https://forum.tagdiv.com/topic/728-x-90px-ads-in-article-inline-ads/#post-43914
I’m not sure what you want to do with thumbnails, you can try to add on your page only blocks that use the same size for thumbnails – you can see here thumbs size on blocks to make an idea – http://screencast.com/t/pgn9npc915B
Also if you want to change the thumb size for a block/module here you can find the code – http://screencast.com/t/Pvy1eMnun if you make any change here please regenerate thumbnails using – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ Please note that if you create a new thumb there you have to change it also in the module file, for example – http://screencast.com/t/Ns1kn4ECxVNk

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If your featured image is larger 745x483 please regenerate your thumbnails to fix it – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/
If you use a smaller image, please note that WordPress doesn’t enlarge images and you will need to use plugin like Thumbnail Upscale to enlarge thumbnails: https://wordpress.org/plugins/thumbnail-upscale/ For upscale use a combination of plugins Thumbnail Upscale + Force Regenerate.

Thanks!

lauriebravo
tagDiv Member

any response on this?

its seems strange that it’s offered as an option within the admin, and then not carried through to the front end!?

Lucian
tagDiv Staff

Hi,

Unfortunately we haven’t managed to find the reason for this issue and a solution for this so far but we will try to fix this until theme’s next update then regenerating thumbnails should bring the right one: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/
We’ll keep you updated on this as soon as we have a fix available. Sorry for the inconvenience!

Thanks

darem
Participant
#0

Disregard

darem
Participant
#0

Might not really be related to the theme, but my google ads show a greenish overlay and display their sizes in the top left corner of the ad. What is happening and is there a way to stop it?

See it happen here: under construction

Thanks for your assistance

TommyWTF1
Participant
#0

My blog isn’t loading the big featured image for posts, the menu bar also isn’t sticky when scrolling.

http://wtf1.co.uk/

The strange thing though is that when I am logged in on WordPress the site works but when I’m viewing it as a user these two things don’t work properly.

Lucian
tagDiv Staff

Hi,

That’s strange. Please make sure that you also empty all your caches if you use any and also try this without any plugins active to make sure that isn’t happening due to a plugin then test again and if yous till can’t manage to solve this send us an email at contact@tagdiv.com and provide your admin login credentials so we can have a closer look at this and we will get back to you as soon as possible.
Please also include a link to this tread into your message!

Thanks

  • This reply was modified 11 years by Lucian.
albrub
Participant
#0

Hi,

I am trying to install the “Big Slide” in the home page, but the 3 articles next to the main one are separated. So it is looking ugly.

I have regenerated thumbnails to create the thumbs for the slider, using this guide for that: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ but it is still not working.

my site is lifeder.com

Lucian
tagDiv Staff

Hi,


@SAPeople
You have to add it to the loop-single file and depending of the post template you’re using this are the loop single files, located in the root of the theme files: http://screencast.com/t/aMCuW2E0p an you can find the opening body tag in the header file: http://screencast.com/t/x1fUghKMIOS or the closing one in the footer file: http://screencast.com/t/EqW45ZKwc

That’s the old documentation, you can find the categories customization documentation here: https://forum.tagdiv.com/customize-the-categories/

Please open a new topic for each of your problem here: https://forum.tagdiv.com/forum/newspaper/


@albrub

This is how i see your slider now: http://screencast.com/t/otlS1jLrjnn you need to regenerate thumbnails to create the thumbs for the slider, use this guide for that: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/
Let us know how it goes and also please make a new tread here: https://forum.tagdiv.com/forum/newspaper/

Thanks

alexschneiderru
tagDiv Member

It is very strange but now actually everything is ok.
Probably my mistake, sorry.

Viewing 25 results - 3,151 through 3,175 (of 3,502 total)