Search Results for 'review'

Results from the Forum
Bogdan B.
tagDiv Staff

Hi,
The latest articles already does what you request. It shows a list of the latest articles. latest to oldest with pagination. You can change it;s settings from here: http://screencast.com/t/k9GTkmTXgPM
As for the grids, they do not accept sticky posts as the grid would break f a sticky post would be present. We created them to ignore sticky posts. I;m not sure about the review pages. Our theme provides a review system that will show up on modules and blocks: http://screencast.com/t/PLCsgte88yhttp://screencast.com/t/Ns8Adnj7ISEh
Thank you!

Bogdan B.
tagDiv Staff

Hi,

Links will appear in the excerpt field, but they will not be clickable. It is the way the excerpts were made. Excerpts were designed to work as a sample data of the post so the user can see a small preview of the content, not use the full features of the content. This will require customization for it to work. There is no easy way of activatin links in the excerpt.
As an alternative you can display the full post content by using module 15 for pages’s layout: http://screencast.com/t/C367cAKea This module will display all post content including links, images and videos. But this is not a block element. It can only be used on category pages, or the latest articles section.

Thank you!

njtechreviews
Participant
#0

Hi There!

We recently launched the Newspaper theme for NJTechReviews(www.njtechreviews.com), but since then the site has been overall slower and not loading as fast. Our PageSpeed insights dropped dramatically as well, and our look on mobile is different from where we would like it. Is there away to customized the mobile theme? Can you advise?

Thanks,

Jake

njtechreviews
Participant
#0

Hi!

Just launched the Newspaper theme on NJTechReviews(www.njtechreviews.com). Works great and so far very happy with it, I was wondering if for the homepage under the latest article if that could just be a stream of everything written on the site in the order, so newest first? And then for the grid we have at the top, if I make a post sticky how would I get that to be the first one? And then can review pages show up next to articles in there?

Thanks!

Jake

nandakishorkn
Participant
#0

I recently purchased Newspaper7 theme.

Featured image is NOT displayed while viewing the post after installing Newspaper7 theme.

http://www.reviewfood.net/nandakishor/198/italian-food/rustica-veg-pizza-thin-crust-cafe-toscano-jayanagar-2nd-block

By the way, featured image area is seen as blank space and when we click on the featured image area or blank space, it opens the featured image or loads the image in the browser window or tab :
http://i2.wp.com/www.reviewfood.net/wp-content/uploads/2016/05/Rustica-veg-pizza-thin-crust-toscano-jayanagar.jpg?fit=4208%2C3120

However, if I switch to my earlier theme or some other theme featured image is showing up or displayed as expected.

Only with newspaper7 theme, featured image is NOT displayed.

Also I tried revolutionary slider and a post with grids or grid with slide, etc – It is NOT showing the featured images.

Featured images are NOT showing in the grid with Newspaper7 theme :
http://www.reviewfood.net/search-by-food

Note: I have tried clearing all cache (W3 Total Cache plugin) and purging everything from my cloudflare CDN but I still see the same issue.

Appreciate your quick help.

pvergados
Participant
#0

Hi,

The Category pull-down filter is partially hidden.

VISIBLE: Latest, Featured ports, Most popular
HIDDEN: 7 days popular, By review score, Random

You can see a live example on your demo.
http://demo.tagdiv.com/newspaper/category/tagdiv-fashion/tagdiv-new-look-2015/

Thanks

sporkhc
tagDiv Member

I know this is old, but there seems to be a bug somewhere here. I moved the site and while I was able to update all the URLs for attachments and such, I’m running into a lot of problems getting the custom font urls changed.

I’ve tried the following:

– Going to the theme panel, then the custom fonts panel, and changing the font URLs. Changes appear to be successfully saved, but on review of the page source and the options in the db, the old URL to the fonts is still there.

– Going to the database and manually editing the field with the Newspaper settings (changing all references to the old URL to the new URL). After this, the theme reverted to defaults, as if it was unable to parse the options.

– Using the Export function, base64 decoding that file, again, search and replace on the URL, base64 encoding and importing back into Newspaper. Same effect as the database edit, theme reverted to defaults.

What other options to alter this?

I’m still on Newspaper6, I have no interest in starting over with Newspaper7, nor does the client.

CooleRnax
Participant
#0

Hello, I’m trying do delete the meta tag from the posts, so facebook, wouldn’t show it in the preview.

<meta name=”author” content=”blablabla”>

poppeto
tagDiv Member

Hi, this is my functions.php which seems quite different to yours? i am unsure where to add this?

<?php
/*
Our portfolio: http://themeforest.net/user/tagDiv/portfolio
Thanks for using our theme!
tagDiv - 2016
*/

/**
* Load the speed booster framework + theme specific files
*/

// load the deploy mode
require_once('td_deploy_mode.php');

// load the config
require_once('includes/td_config.php');
add_action('td_global_after', array('td_config', 'on_td_global_after_config'), 9); //we run on 9 priority to allow plugins to updage_key our apis while using the default priority of 10

// load the wp booster
require_once('includes/wp_booster/td_wp_booster_functions.php');

require_once('includes/td_css_generator.php');
require_once('includes/shortcodes/td_misc_shortcodes.php');
require_once('includes/widgets/td_page_builder_widgets.php'); // widgets

/*
* mobile theme css generator
* in wp-admin the main theme is loaded and the mobile theme functions are not included
* required in td_panel_data_source
* @todo - look for a more elegant solution(ex. generate the css on request)
*/
require_once('mobile/includes/td_css_generator_mob.php');

/* ----------------------------------------------------------------------------
* Woo Commerce
*/

// breadcrumb
add_filter('woocommerce_breadcrumb_defaults', 'td_woocommerce_breadcrumbs');
function td_woocommerce_breadcrumbs() {
return array(
'delimiter' => ' <i class="td-icon-right td-bread-sep"></i> ',
'wrap_before' => '<div class="entry-crumbs" itemprop="breadcrumb">',
'wrap_after' => '</div>',
'before' => '',
'after' => '',
'home' => _x('Home', 'breadcrumb', 'woocommerce'),
);
}

// use own pagination
if (!function_exists('woocommerce_pagination')) {
// pagination
function woocommerce_pagination() {
echo td_page_generator::get_pagination();
}
}

// Override theme default specification for product 3 per row

// Number of product per page 8
add_filter('loop_shop_per_page', create_function('$cols', 'return 4;'));

if (!function_exists('woocommerce_output_related_products')) {
// Number of related products
function woocommerce_output_related_products() {
woocommerce_related_products(array(
'posts_per_page' => 4,
'columns' => 4,
'orderby' => 'rand',
)); // Display 4 products in rows of 1
}
}

/* ----------------------------------------------------------------------------
* bbPress
*/
// change avatar size to 40px
function td_bbp_change_avatar_size($author_avatar, $topic_id, $size) {
$author_avatar = '';
if ($size == 14) {
$size = 40;
}
$topic_id = bbp_get_topic_id( $topic_id );
if ( !empty( $topic_id ) ) {
if ( !bbp_is_topic_anonymous( $topic_id ) ) {
$author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size );
} else {
$author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size );
}
}
return $author_avatar;
}
add_filter('bbp_get_topic_author_avatar', 'td_bbp_change_avatar_size', 20, 3);
add_filter('bbp_get_reply_author_avatar', 'td_bbp_change_avatar_size', 20, 3);
add_filter('bbp_get_current_user_avatar', 'td_bbp_change_avatar_size', 20, 3);

//add_action('shutdown', 'test_td');

function test_td () {
if (!is_admin()){
td_api_base::_debug_get_used_on_page_components();
}

}

/**
* tdStyleCustomizer.js is required
*/
if (TD_DEBUG_LIVE_THEME_STYLE) {
add_action('wp_footer', 'td_theme_style_footer');
// new live theme demos
function td_theme_style_footer() {
?>
<div id="td-theme-settings" class="td-live-theme-demos td-theme-settings-small">
<div class="td-skin-body">
<div class="td-skin-wrap">
<div class="td-skin-container td-skin-buy">BUY NEWSPAPER NOW!</div>
<div class="td-skin-container td-skin-header">GET AN AWESOME START!</div>
<div class="td-skin-container td-skin-desc">With easy <span>ONE CLICK INSTALL</span> and fully customizable options, our demos the best start you'll ever get!!</div>
<div class="td-skin-container td-skin-content">
<div class="td-demos-list">
<?php
$td_demo_names = array();

foreach (td_global::$demo_list as $demo_id => $stack_params) {
$td_demo_names[$stack_params['text']] = $demo_id;
?>
<div class="td-set-theme-style">" class="td-set-theme-style-link td-popup td-popup-<?php echo $td_demo_names[$stack_params['text']] ?>" data-img-url="http://demo.tagdiv.com/demos_popup/newspaper/large/<?php echo $demo_id; ?>.jpg"></div>
<?php } ?>
<div class="clearfix"></div>
</div>
</div>
<div class="td-skin-scroll"><i class="td-icon-read-down"></i></div>
</div>
</div>
<div class="clearfix"></div>
<div class="td-set-hide-show"></div>
<div class="td-screen-demo" data-width-preview="380"></div>
<div class="td-screen-demo-extend"></div>
</div>
<?php
}

}

Piyush Bandi
Participant
#0

I have installed fresh wordpress 4.5.3, and installed newspaper theme, now i had activated WPBakery Visual Composer.the WPBakery Visual Composer version is 4.3.4 which is bundled with newspaper theme. while adding new page via visual composer using backend editor the preview of layout shows but it in grey color and i cannot select the layout for my page. Also if i wish to add some element it is not adding element . PLease help me .

Gadgetsay
tagDiv Member

no the answer is I need to go to the each category that belongs to be the under of Gadgets Review and Change The Parent to Gadgets Review Then this can be happen, but you are unable to suggest me the right answer sir, 🙁

Thanks Anyway!

Gadgetsay
tagDiv Member

Sir I asked you how can I get only like this, you are saying the way I am doing is not good means the apple under Gadgets review is not correct then how will it come like this as the image below!

this is Techviral.com which is using the same theme as I am but why I cant use the type of menu he is using?

this is the screenshot of Tech Viral mega menu

Under security how those category are appearning? how can I do that?

Thanks

Gadgetsay
tagDiv Member

Just for a test I have set only Apple brand on Gadgets Review Category which is sub-category as you can see the images of my menu setting! still you can see the site: http://www.gadgetsay.com

See the menu images: Gadgets Review

The sub-category under Gadgets Review – Apple: Under Gadgets Review Apple

Please give me the proper solution, I have purchased this theme because of its drop down feature, and still I cannt access to this!

Thanks!

Andrei L.
tagDiv Member

HI

You can make a detect using this code: http://screencast.com/t/zYuWvLQh5Whttp://screencast.com/t/E1ZzSq7mhFlj

if (isset($_GET['preview'])){
	$preview = $_GET['preview'];
}

if ($preview == true){
	echo '<h1> this is preview mode </h1>';
}

Inside second condition you need to add a code which will prevent disqus to load in preview mode.
Thanks!

Catalin
tagDiv Staff

Hello goos3d,

Please keep in mind that our theme strictly uses predefined roles and capabilities predefined by WordPress and we do not alter all of these. I have tested to a default theme with contributor and it cannot create a post until the admin submits it after review, as you can see here -> http://screencast.com/t/TCMFsoCGj This is the standard behaviour for Contributor user. Please notice that exist a lot of plugins in this regard which alter these functionalities with the help of which you can you can override these roles.
Also, you can send us an email at contact@tagdiv.com with your log-in information so we ca further inspect it. Provide the link of this topic so we can easily identify you.

Thanks for your understanding!

CreepyRavioli
Participant
#0

I need a way not to load the comments form when previewing a post, is there a way to achieve this? How?

If you need a reason to help: I use disqus and it generates a url for the “discussion” the first time the comment form loads, if this is the preview then it will look something like site.com/?post_type=food&p=41009 And this is a problem because afterwards when the post is published under a real url disqus will not recognize the comments count. The only way is to manually change the discussion url. I’ve already contacted disqus and they say, “not a bug” if you do not want disqus to pick the preview url, don’t load disqus on the preview page, the only way i know is to completely remove the comments form, so how would i go about this? Is there some sort of conditional for the preview page?

Gadgetsay
tagDiv Member

See the problem:

After my mouse cursor on a menu category as ‘Gadgets Review’ See below on this image – Gadgetsay Image LInk
But in my friends website see this – TechViral Image link

The change you will see is the sub-category is looking nice which is left side of those articles.

This is what I was saying!

Catalin
tagDiv Staff

Hello goos3d,

As you can see in Codex documentation, the Contributors has only to edit_posts, delete_posts as you can see here -> http://screencast.com/t/gtLyC3jC6Pwe As Contributor, you can create a new post but he cannot publish it but only Submit for Review, just like this -> http://screencast.com/t/y0BomA33B2fq As you can see, as Contributor you cannot have any access to Media Library and therefore you cannot set the Featured Image. Please notice that all these roles and Capabilities are related from WordPress system and not from our theme.

Thanks for your understanding!

Gadgetsay
tagDiv Member

The weird look setting I have done on “Gadgets Review” Category Menu.

me4sunny
Participant
#0

Hi guys!
You have agreat feature – subtitles area that allows us to write proper leads BUT currently there is no way to use the text from subtitles as te “abstract” in front page articles “preview”
Please advise how we can allow for the text in sub-title are to be displayed on the front page under the post’s title?
Regards
Anastasia

Catalin
tagDiv Staff

Hello BastianWeber,

Please notice that if you import the demo with content, only the pictures from there are available for customers. Perhaps, you are referring to the images which are displayed to our demo preview, right? Please notice that all of these images are not available for our customers because we have copyright for all of these and it could be used only from our in this case and we cannot distribute because we are not aware doing this.

Thanks for your understanding!

Catalin
tagDiv Staff

Hello mrx,

First of all, I want to thank you for your kind words and I am glad that I can see that our customers are very happy using our products. Thank you very much for your good reviews.

Please notice that your website is needed in this case, so I can inspect it closer and also, so I will be able to provide a more accurate response.

Thanks for your understanding!

BastianWeber
Participant
#0

Hi,

I was wondering where I can find the pictures/media used in the demo previews. I only have access to the pictures respective to the demo I have activated. Since I’m interested in working with the car-theme, but am looking for the pictures of the default theme, I was wondering where I can find the pictures used in the default theme in the zip folder so I can manually upload them.

Thanks
Bastian

VZ
Participant
#0

Hi,

We used to use a 3rd party plugin that allowed us to add star rating to each review we did on the website. This would show up in the search results.

When we switched to using the Newspaper theme and used the inbuilt Star rating system, we noticed the stars no longer show up in search results which is a bit of a bummer really for several reasons.

Is there some reason why this is happening and how to fix it?

Thanks
Vince

Catalin
tagDiv Staff

Hello Irreverent Gent,

Please notice that all the available graphics for our Review Section in the theme might be changed from here -> http://screencast.com/t/3SrqaDIZrQ For more information about this feature, please check here -> https://forum.tagdiv.com/reviews-2/ If you want to add more graphic for this, please notice that this could be done only through hard coding that involves custom work and we cannot provide these types of services at the moment, sorry!

Hope this helps!

Thanks for your understanding!

Viewing 25 results - 5,351 through 5,375 (of 7,000 total)