Search Results for 'block'

Results from the Forum
chriswhitley
Participant
#0

I can see prior questions regarding this issue but can not seem to find a solution posted. Can you please help me remove the little black comments block from the bottom of posts on pages? The comments are set to off but there is still a little black box icon with a 0 in it that appears.

THANK YOU!

lucie_barragan
Participant
#0

Dear,

I would like to use with tag div composer the block 1 with an ajax filter by category and a dynamic Limit post number to not fill white space on wide screen and to limit vertical scrolling with smaller screen.
as example:
if screen min-width 1200 Limit post number:9
if screen min-width 800 Limit post number: 5
if screen min-width 300 Limit post number: 3

From tag dive composer I do not see how to do it.

Thanks for your help

euw
Participant
#0

Hi,

at the moment I’m implementing a simple Anti-Adblock plugin from me into Newspaper WordPress site. It replaces the blocked ads inside the themes classes like “td-a-rec td-a-rec-id-custom_ad_1”. I’ve noticed all of the 5 “custom_ad” classes contain the word “ad” in their class name. These elements are blocked by adblockers while the other ad class (like the one for the sidebar) hasn’t the word “ad” in it.

So my options are either changing the class names inside the /themes/Newspaper/includes/shortcodes/td_block_ad_box.php with a code like this:


        $check_css_name = ['custom_ad_1', 'custom_ad_2', 'custom_ad_3', 'custom_ad_4', 'custom_ad_5'];
        if (in_array($spot_id, $check_css_name)){
        	$spot_id = str_replace("ad", "stealth", $spot_id);
        }

or a theme update which changes the names. I think this would be an easy and convenient change.

It would be nice if you considered it. Thanks in advance.

glcadmin
tagDiv Member

Thanks,

I made all modifications and my hosting provider made all necessary changes according to your guide. But the problem persist. It is strange that only this selection (Modules MX and other Blocks – Article Title) is loading endlessly.

Could it be something else?

prashanth
Participant
#0

Hi,
I have to badly breakout from frame scrapping. I mean I want to block my site from loading inside frames on some other websites which affect my SEO. Any code available?

Few plugins already tried. No use. Some works on Chrome, but all fails on Firefox. I don’t know theme causes any issue or not.

Regards,
Prashanth

glcadmin
Participant
#0

Theme panel > Theme Fonts > Modules MX and other Blocks – Article Title endlessly loading and doesn’t show

Simion C.
tagDiv Staff

Hi,

All the post filtering options are mentioned here
https://forum.tagdiv.com/block-settings-guide/
You can add the category Id’s you want in the category filter, and the posts displayed will be only from those categories. Other filtering conditions could only be made by modifying the theme files, that would probably not be an easy task.

Thanks

Bogdan B.
tagDiv Staff

No, there will be no other consequences besides the ones you mention as far as we know.
But we have not tested the block filters as this functionality has always been missing from our theme and we have developed the post filters much over time and since we have not tested the filters, it is hard for me to make a prediction to what till break or not. Test it out and try the post sort orders: https://www.screencast.com/t/v9gYQPr7lQO
I can provide no more information on this as it is simply not tested. We have provided a solution to your problem but in order for us to discover ALL of the implications it will mean rigorous testing and we cannot offer such services at the moment. We do not have a customization department.

Thank you for your understanding.

Simion C.
tagDiv Staff

Hi,

If you followed the plugin installation instructions and it is not working properly, maybe the plugin is not compatible with the theme. Try a different one instead, you could find one that works properly.
There are blocks in the theme that have the Read more button displayed. All the block can be found here (use selection on the right)
https://demo.tagdiv.com/newspaper/block-1/

Thanks

Bogdan B.
tagDiv Staff

Here is the documentation in question: https://forum.tagdiv.com/td_api_blockadd/
The api plugin will not have this parametere if you used it as it was built before the tagdiv composer was implemented. Please try the method specified in the documentation provided.

Thanks.

Pumbany
tagDiv Member

Thanks for the information.

I installed the demo “News Magazine”

How can I make the picture sizes that are used in posts on my site http://mysleepapnea DOT net/ so that they are the same size as the pictures used in the demo https://demo.tagdiv.com/newspaper_magazine/

On my site, some pictures are too small in the posts. What sized pictures are they using in the demo in the various blocks so that I will know how to size my pictures?

Optival
tagDiv Member

Bogdan,

Here is my understanding, correct me if I am wrong:


Let’s say, I have a category called News. Within the category, it contains public posts and private posts.

When I use the block’s filter to show the News:
Administrator – will see both public or private posts
Public – will see only public posts.

If the understanding is right, from my perspective, administrator should be aware of the different right, if the administrator set the post to private – “it is not meant to be seen by the public”, isn’t it? Please clarify.

My concern is it might have other unknown consequence which I have to further try out.

Thanks.

Jerrad
tagDiv Member

I just figured out where the conflict is happening with Gravity Forms and Newspaper… which may also be in the same place for Newsmag!

Using Google Chrome Developer tools, I was able to trace back the error to the td_wp_booster_functions.php file where there’s some code for “css for wp-admin / backend”. It’s just this CSS code that seems to be causing the issue because I tried commenting out the javascript section and it didn’t help.

When I commented out the lines 382-399 and uploaded the file to the server, I was able to use all the tools on the Gravity Form pages which I wasn’t able to before. Of course now that I have done this, the Newspaper settings pages are not styled correctly and are completely non-functional.

Which wp-admin pages does this CSS script need to load besides the Newspaper/Newsmag admin pages = Welcome, Plugins, Install Demos, Support, System Status, and Theme Panel? Is it needed on post type edit screens? Is there a way to modify the code below to make it work on the required pages and not load on other plugin settings?

add_action('admin_enqueue_scripts', 'load_wp_admin_css');
function load_wp_admin_css() {
//load the panel font in wp-admin
$td_protocol = is_ssl() ? 'https' : 'http';
wp_enqueue_style('google-font-ubuntu', $td_protocol . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
if (TD_DEPLOY_MODE == 'dev') {
wp_enqueue_style('td-wp-admin-td-panel-2', td_global::$get_template_directory_uri . '/td_less_style.css.php?part=wp-admin.css', false, TD_THEME_VERSION, 'all' );
} else {
wp_enqueue_style('td-wp-admin-td-panel-2', td_global::$get_template_directory_uri . '/includes/wp_booster/wp-admin/css/wp-admin.css', false, TD_THEME_VERSION, 'all' );
}

//load the colorpicker
wp_enqueue_style( 'wp-color-picker' );

// load the media library - necessary for block widgets with image params
wp_enqueue_media();
}

Thanks,

Jerrad

AirPhibi
Participant
#0

Please help me i want set my page with visual composer
but new version VC there is no option block editor

https://pasteboard.co/GH1TQw6.png (New Version)
https://pasteboard.co/GH1TAAX.png (old version)

MediaServicesTagDiv
tagDiv Member

Catalin, you said…

email at contact@tagdiv.co with your log-in information

which I did. When I did not get a reply I double-checked tagdiv.co which shows a “link farm” website. Please verify the correct email address is actually contact@tagdiv.com.

It appears someone in China owns tagdiv.co.

Thank you.

Simion C.
tagDiv Staff

Hi,

You could do that. It would require the code to be more precise, like this for each module of the Big grid
https://www.screencast.com/t/8j9CKkRHi
https://www.screencast.com/t/tk1qPHObn

.td_block_big_grid_12 .td_module_mx5 .entry-title a {
font-size: 25px;
}
.td_block_big_grid_12 .td_module_mx11 .entry-title a {
font-size: 16px;
}

Use the values you want in the code for the font.

Thanks

Bogdan B.
tagDiv Staff

Hi,

That is a custom implementation made for the business demo exclusively. It is a css added for the block. You can get that result by installing the business demo, or by replicating it’s css: https://www.screencast.com/t/wOpra7FYpyyv

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Our main concerns regarding this issue is your block filtering. If you filter your blocks to show specific content and that content has privately published posts, your users content will be different than the one you see and plan. We do not know of a bug or part of the theme that will break using this implementation. We only just want to avoid confusion regarding these posts and our blocks as much as possible.

Thank you!

Simion C.
tagDiv Staff

Hi,

This is not difficult to achieve, it was created and designed to be accessible. Simply click on the block while editing the page with the tagDiv composer, and the block settings section will be displayed
https://www.screencast.com/t/9Ez1QhRA
There you can customize the block how you want. The post sorting options are in the filter tab along with other filtering options
https://www.screencast.com/t/1BOj1m1CHh
Please follow this composer tutorial for more useful information
https://forum.tagdiv.com/tagdiv-composer-tutorial/

Thanks

Simion C.
tagDiv Staff

Hi,

Disabling the tagDiv composer should not have any effect in pages built with Visual composer or crash the website or page.
There might be other factors that could be causing this kind of layout issues. Plugins, custom code in theme panel or in the theme files, customization of the theme elements (like blocks and modules) directly or through a child theme.
If you could maybe provide a link to the website you mention with the layout issues, we could inspect it.
Try using the browser inspector to inspect the block mentioned, and maybe identify what is causing it to display like that and where is it coming from.

Thanks

pragmatic
tagDiv Member

Bogdan B.

The problem seems to be with the class of tdc_state not being checked for.

If the file wp-content/themes/Newspaper/includes/shortcodes/td_block_text_with_title.php on line 53, there is an if statement for tdc_state so you will get a fatal error if the class doesn’t exist.

The class needs to be checked like in wp-content/themes/Newspaper/includes/wp_booster/td_util.php, line 622.

Sorry this won’t be much help to you Steve, but will hopefully help Bogdan.

Simion C.
tagDiv Staff

Hi,

It seems that way however. The server might be blocking this process through a firewall or security plugin. There is nothing that can be done from the theme perspective, as the server is denying the request.
Please try and contact the host, provide them with the error, and they will surely help get this solved.

Thanks

Kefalonia
Participant
#0

Hi,
I installed the theme freshly on https://www.kefalonia-griechenland.com/ and wantet do drag and drop elements into the page, but the block just moves a little and then gets stuck – no way to move it to the right side so it’s actually on the page. I tried in firefox and chrome.
I have mysql 5.7 and php 7.1 running – anny chance that you don’t support those yeat?

Best, Simon

rima144
Participant
#0

How to set block 15 to look like this? screencast

hsen284
Participant
#0

Hey! I hav an issue with the blocks element.
When I set site language to arabic, Header name and Ajax dropdown – filter are now above each others
Here’s an image
http://lebaniz.com/wp-content/uploads/2017/08/issue-1.png

Viewing 25 results - 23,401 through 23,425 (of 39,816 total)