Search Results for 'rtl'

    No search results were found in Documentation!

Results from the Forum
trendyseekers
tagDiv Member

@Calin, thanks for the reply and abit late as I was offline, here’s the link without any smartlist use https://trendyseekers.com/best-natural-hairstyles-for-black-women/

jadmac
Participant
#0

Hello, so I’m currently having issues with the preview images when I share links on various websites such as FB and Twitter. They won’t load.

It appears to be caused by the WPBakery plugin but I am not 100% certain. When I deactivate the plugin it does seem to resolve the issue but shortly afterward reverts to the same error. It has happened previously and I did figure out a certain sequence of activating and deactivating certain plugins fixed the issue, however, I can’t recall the details.

With that said, what is the likely cause and fix for this issue?

ankurkul86
tagDiv Member

Thanks am clear with Custom Ad.

The Post template – does it mean these ad options are specific to the post template that I choose in post settings?

Smartlist – Am sorry, but I am unable to understand the concept of smartlist itself. Do you have any documentation or thread where I can gain more information.

Mariolino_dg
Participant
#0

Hi, how can I insert the adsense banner into smartlist 4?

thank you

Calin
tagDiv Staff

Hi @NBO Bangla,
Replay via this topic -> https://forum.tagdiv.com/topic/mobile-navigation-bar/

Hi @Diyar

You can try this fix
#td-mobile-nav {
position: fixed;
}

But also is possible to be others elements broken in RTL

Thank you for your understanding..

Diyar
tagDiv Member

please Check it now. I returned to RTL MODE.

https://iraqcoders.com/

isghari
tagDiv Member

Hi Simion,
Than’s for the reply.

1- Solution 1 with cloud library messed up all the formatting of my article ( i used smart list template 4) + the 2 ads disappeared. So I’m considering the solution 2

2- Deactivating the AMP plugin (I will redirect the ancient AMP pages with an Htaccess for google seo) , and NOT using the Mobile Theme. Does that configuration force the back/next buton to appear on both Desktop and Mobile and tablette? (using the smartlist number6)

3- How can I remove the sign “>” and “<” from the back/next button? … to show only “Next” or “Back” without the signs?

4- last question: Is there a way to remove the “back button” completely?
Sure we can hide it with css color White on White, but can we remove it all togheter?

Your code for changing the button on pages 3, 4, 5 .. is working great. Thank’s!

Diyar
Participant
#0

Hi,

I understand that Newspaper doesn’t support RTL, I am okay with that!. I have good CSS skills to deal with that either.
Anyway, I take a screenshot to the problem which I faced after turned my WordPress setting to the Arabic Language.

https://imgur.com/a/lRQ8Ejl

Site Link : https://www.iraqcoders.com

Fikri Zaky
Participant
#0

Hello, i want to change smartlist style in Mobile Theme, can i change it? How?
Btw, i want to change it to smartlist style 2.

And how to change category “top grid – displays 3 posts” in Mobile Theme?

Thanks

isghari
tagDiv Member

3- One more question: In a smartlist of 10 items for example, Is there a way to customize the button on slide 1, different from slide 2, different from slide 3?

isghari
Participant
#0

Hi,

First, Congrats for this awsome Newspaper theme.
Fantastic!
This support forum was also very helpful for tweaking it.

here’s my problem:

1- I can’t figure out how to add a block 3colons*3lines for my best articles after an article “smartlist6”.
see image
objectif

Please can you help?

2- Does Next/Back button appear the same in mobile devices?
I noticed the amp version of my article doesn’t work: ie it doesn’t show the back/next button

Should I de-activate the Amp Newspaper plugin to make it work on mobiles?
What is the cost of de-activating the Amp plugin? (speed? seo? )

For info : here is my modified smartlist6 file
—-
<?php

class td_smart_list_6 extends td_smart_list {

protected $use_pagination = true; // set this to true to use rela pagination on this template

protected function render_before_list_wrap() {
if(td_global::$cur_single_template_sidebar_pos == ‘no_sidebar’) {
$td_class_nr_of_columns = ‘ td-3-columns ‘;
} else {
$td_class_nr_of_columns = ‘ td-2-columns ‘;
}

$buffy = ”;

//wrapper with id for smart list wrapper type 2
$buffy .= ‘<div class=”td_smart_list_6’ . $td_class_nr_of_columns . ‘”>’;

return $buffy;
}

protected function render_list_item($item_array, $current_item_id, $current_item_number, $total_items_number) {
//print_r($item_array);
$buffy = ”;

//creating each slide
$buffy .= ‘<div class=”td-item”>’;
$buffy .= ‘<div class=”td-number-and-title”><h2><span class=”td-sml-current-item-nr”>’ . $current_item_number. ‘</span><span class=”td-sml-current-item-title”>’ . $item_array[‘title’] . ‘</span></h2></div>’;

// 2nd ad smart list 6 Modif LJMI 1/12/2018

$buffy .= do_shortcode(‘[td_block_ad_box spot_id="custom_ad_1"]‘);

//get image info
$first_img_all_info = td_util::attachment_get_full_info($item_array[‘first_img_id’]);

//get image link target
$first_img_link_target = $item_array[‘first_img_link_target’];

//image caption
$first_img_caption = $item_array[‘first_img_caption’];

//image type and width – used to retrieve retina image
$image_type = ‘td_696x0’;
$image_width = ‘696’;

if(td_global::$cur_single_template_sidebar_pos == ‘no_sidebar’) {
$first_img_info = wp_get_attachment_image_src($item_array[‘first_img_id’], ‘td_1068x0’);
//change image type and width – used to retrieve retina image
$image_type = ‘td_1068x0’;
$image_width = ‘1068’;
} else {
$first_img_info = wp_get_attachment_image_src($item_array[‘first_img_id’], ‘td_696x0’);
}
if (!empty($first_img_info[0])) {

//retina image
$srcset_sizes = td_util::get_srcset_sizes($item_array[‘first_img_id’], $image_type, $image_width, $first_img_info[0]);

// class used by magnific popup
$smart_list_lightbox = ” td-lightbox-enabled”;

// if a custom link is set use it
if (!empty($item_array[‘first_img_link’]) && $first_img_all_info[‘src’] != $item_array[‘first_img_link’]) {
$first_img_all_info[‘src’] = $item_array[‘first_img_link’];

// remove the magnific popup class for custom links
$smart_list_lightbox = “”;
}

$buffy .= ‘
<figure class=”td-slide-smart-list-figure td-slide-smart-list-6’ . $smart_list_lightbox . ‘”>



</figure>
<figcaption class=”td-sml-caption”><div>’ . $first_img_caption . ‘</div></figcaption>
‘;
}

$tds_smart_list_6_title = td_util::get_option(‘tds_smart_list_6_title’);

//adding description
if(!empty($item_array[‘description’])) {
$buffy .= ‘<span class=”td-sml-description”>’ . $item_array[‘description’] . ‘</span>’;
}

// ad smart list 6 Modif LJMI30/11/2018 inversed text and Image
$buffy .= td_global_blocks::get_instance(‘td_block_ad_box’)->render(array(‘spot_id’ => ‘smart_list_6’, ‘spot_title’ => $tds_smart_list_6_title));

$buffy .= ‘</div>’;

// render the pagination
$buffy .= $this->callback_render_pagination();
//$buffy .= $this->callback_render_drop_down_pagination();

return $buffy;
}

protected function render_after_list_wrap() {
$buffy = ”;
$buffy .= ‘</div>’; // /.td_smart_list_6 wrapper with id

return $buffy;
}

}

——-

Catalin
tagDiv Staff

Hello again,

Please keep in mind that our theme does not support RTL and also, we do not have any plan for this implementation in near future update, sorry! Unfortunately, the coding world is not so simple. There are lots of problems and situations that need to be addressed and code modified if you want to use the theme in rtl with all of its features. Every element needs to be adapted to the new direction and that is why we recommend hiring a freelancer to do this for you. We have no simple solution to provide as the modification is very time-consuming and we cannot tackle such tasks.

Thank you for your understanding.

Diyar
tagDiv Member

Okay Man,

in first place : You guys should support RTL because your theme one of the best themes on themeforst. so its your responsibility to make the theme more better in next update.

Anyway, can you help me to reach the CSS of the menu of mobile veiw. and the menu of the desktop veiw. I will work on it, I just wanna know it CSS then I can change it.

Catalin
tagDiv Staff

Hi,

Unfortunately, the theme does have any RTL support. Also, please notice that we cannot provide support for additional customizations, sorry!

Thanks.

Diyar
Participant
#0

Hi Tagdiv!

I have a problem After using the arabic language is a defualt language of the theme.

First : the menu button of “Mobile Verson” gose to Left and merge with the search button. I want reach it Css, to change it postion to other diraction or move the search button to the old place of the menu button.

Img : https://imgur.com/a/lJxwPkE

Second: I want to keep the dropmenu sign in the same place it was be before changed the theme language from EN to AR.

Img : https://imgur.com/a/zkXwlOs

my webstie : https://www.iraqcoders.com

Calin
tagDiv Staff

Hi,

Thank you for your encouragement and the support you want to provide with RTL.

Simion C.
tagDiv Staff

Hi,

You could use a smart list style that doesn’t refresh the page, like these ones
https://demo.tagdiv.com/newspaper/smart-list-style-1/
https://demo.tagdiv.com/newspaper/smart-list-style-3/

If that is not possible, maybe the first paragraphs displayed above the smart list can be removed with CSS starting from the second slide.

Something like this could work, may need modifications however
https://forum.tagdiv.com/topic/count-on-smartlist-2-how-to-skip-the-1st-number/

Thanks

reddisl
tagDiv Member

Work perfectly 100% ! Thank you Boss

Please note that Newspaper>Theme panel>Custom code> doesn’t work at all ! so I always add CSS in Theme> customization > Custom CSS

——–
Nevertheless, I’m going to submit an article about all RTL errors , so that the team can fix them, I have a feeling that NEWSPAPER 10 is going to support RTL

It makes me angry to see other RTL theme in themeforest stealing all original ideas from TAGDIV to put theme in their themes.

So I’ll help NEWSPAPER THEME to Support RTL and be the N01 RTL THEME !

Thank you again .

Best regards

trendyseekers
tagDiv Member

Hi Calin, can u help me one more thing, instead of using the light grey color only on smartlist, how about to have it on a normal blog post? What CSS to use?

Here’s what is shown on my site http://prntscr.com/lot1ai
It only has pure image and i want to have grey background image under it

pruzz
Participant
#0

How to changes smartlist in mobile plugins to smartlist 8?

NickDeBaerdemaeker
Participant
#0

Hi,

I have added a few custom fields to the post title, so that for instance locations can be selected from a dropdown list but still show up in the title.

However, now the permalink for the post now only relates to the the post title.
For instance: “Paul Weller 5 oktober 2018 Depot, Leuven” is now only a link in the “Paul Weller” bit of the text, where we would like to have the complete thing as a link.

Any thoughts on where and how I can change this ?
This is currently the code:

<div class="post-title">
<?php get_the_title( $id );?>
<?php echo $this->get_title($title_length);?><h3 class="entry-title td-module-title">
<?php $datum = get_field( "datum" , $this->post->ID ); //etc...?>
<?php if ( $datum ) : ?><span class="cemetadate"><?php echo $datum ; ?></span><?php endif; ?>
<?php $concertlocatie = get_field( "concertlocatie" , $this->post->ID ); //etc...?>
<?php if ( $concertlocatie ) : ?><span class="cemetacelocation"><?php echo $concertlocatie['0']; ?></span><?php endif; ?></h3>
</div>

rasoolakhter
tagDiv Member

but you have arabic support and that is rtl language, then this is strange

Calin
tagDiv Staff

Hi,

That depend on what do you want to change on layout.

Also please notice that our theme has not been optimized for the RTL version and also, do not support this way, sorry! If you are disappointed about this case, we can provide a full refund, sorry!

Thank you for your understanding.

saucestyle
Participant
RTL help - topic
#0

hello,
im using a RTL language on that theme.
can you advise me what kind of changes do i need to make in order to make it RTL layout?
or should i hire someone who can do it for me?

trendyseekers
Participant
#0

I am not sure if this is will be good or bad when using the smart list option though it does provide an easy navigate and easy user experience with smart list but I wonder if smartlist will be good or bad in term of SEO?

Viewing 25 results - 651 through 675 (of 1,719 total)