- NewspapertagDiv AMP Plugin Tutorial
- ApiPractical example – How to add a new Block and Module
- NewspaperTrack Subscription Sources with Locker URL in Opt-In Builder
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperCredit System
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to use the Posts List shortcode
- NewspaperUser review system
- NewspaperCustom Fields Support
- NewspaperHow to generate Facebook App ID
- NewspaperHow to insert a block inside the content of a post
- NewspaperModal Popup
- NewspaperPayPal Setup
- NewspaperLink Tracker
- NewspaperLockers
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperAdd Cryptocurrency Price Ticker Widget
- NewspaperPosts Loop Element
- NewspaperThe Newspaper Mobile Theme: Introduction
How to change the recent post style…..(title color & article display)?
http://ruixuan17888.com/wp-content/uploads/2017/06/螢幕快照-2017-06-10-上午1.05.08.png
Hi,
I know that blocks can be used to display category posts.
For example block 9, they have too much space between titles.
I would rather prefer them to be compact with less spacing between post title.
For eg, I would prefer
aaaaaaa
bbbbbbb
ccccccc
rather than what is now Block 9
aaaaaaa
bbbbbbb
ccccccc
Also regarding downloaded plugins, I want to add widgets on homepage using Visual Composer or Tagdiv Composer.
Regards,
Siddharth
Hello Valadim,
Please keep in mind that the SSL should work as properly with our theme. As an example, you will have to check our demo preview, because it was made on SSL and still working fine. Check here -> https://demo.tagdiv.com/newspaper/
Make sure that you have right installed your SSL on your website in order to achieve best results.
Thanks for the message!
Hello,
I have downloaded & activated the plugin “Category Posts Widget”. I wanted to use it in my sites homepage.
But on clicking Add Elements, I am unable to find this plugin, like wise other plugins are also not available.
Regards,
Siddharth
Hi,
You could set a custom margin in each of the blocks. In this example I want to reduce the space between the Big grid and the 2 blocks below
– https://www.screencast.com/t/zDaRJPQmrZ
This can be done by setting a custom margin between these elements
– https://www.screencast.com/t/xbha2FAJ
It could be done with some css as well
– https://www.screencast.com/t/B8Mw0WjEVrZ
You can identify the elements on the page and their classes using the browser inspector, and create custom code that you can use in the theme panel
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
I am unable to see downloaded widgets while trying to add elements in VC.
Can you please suggest.
Thanks & Regards,
Siddharth
Hi,
You can create full width pages with the tagDiv composer. Some page building elements can be full width, by stretching the row (or stretching the row with content) they are placed in. For example the available Full big grids
– https://demo.tagdiv.com/newspaper/full-big-grid-1/
– https://www.screencast.com/t/7OJaD8jJQ
Here you can find more information about tagDiv composer and experiment with different layouts and elements
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
Thanks
Hello azzronulation,
Unfortunately, the theme does not have any such an option for it, but you can try to do this if you have some solid bits of knowledge in PHP. As a hint, you can begin from this code example, like this -> https://stackoverflow.com/questions/6948668/get-user-id-from-facebook-in-php
Notice that is not a simple task and if you are not aware of the steps which are needed to tale in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom services at the moment, sorry!
Thanks for your understanding!
Hi team,
I am having the same problem as above. In short, my single product page and shop page have lost their left margins and are all over the place. They were working fine but out of the blue appear to have gone to sh*t virtually overnight. I just updated to WordPress 4.8 but not sure if that’s a culprit.
In reviewing your post above, I still appear to have the correct code on the product page which is similar to your example. See below.
<head>
<body class=”product-template-default single single-product postid-7643 woocommerce woocommerce-page website-review global-block-template-1 wpb-js-composer js-comp-ver-5.1.1 vc_responsive td-animation-stack-type0 td-full-layout td-js-loaded” itemscope=”itemscope” itemtype=”http://schema.org/WebPage”>
I turned off all plugins except for Visual Composer and WooCommerce and the problem still exists. I tried a different theme which did appear to resolve the issue. When I go back to Newspaper 8, the problem returns. So there appears to be an issue between the theme and WooCommerce. I also updated to WP 4.8 which plausibly could have contributed.
I’m quite experienced with WordPress after nearly a decade of using it, but this one has me stumped and frustrated. Would welcome any help you can provide.
Thanks guys 🙂
Test one of your posts with GTmetrix.com to get suggestions and examples of stuff you need to fix on back end.
I have the category tags turned on for Saucemonsters.com. Under each cover photo on the front page, it shows the ‘primary’ category tag the article was assigned. My issue is that many times the incorrect primary tag is showing. I will pick, for example, ‘Video Games’ as the primary tag which is a subcategory of ‘Randomness’. But the tag on the front page will show ‘Randoness’. Also, sometimes the correct tags appear on the page, but later that day they are all wrong. Then at other points correct again.
Thanks Simion, much appreciated! But it doesn’t work for some reason…
I created the path and copied the respective file in my child theme, then added the following line of code on the suggested place in the php code: ‘w-menu’ => ‘w menu’ but it breaks the site. To try, I added the code in the respective file, in the respective parent theme’s folder (as you describe above) – it breaks the site again.
I have the shop menu created, just can’t create a new location- woocommerce pages.
Btw, just as a note, in case that matters – I use the following code to avoid loading woocommerce scripts on non-woocommerce pages:
add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_styles_scripts’, 99 );
function dequeue_woocommerce_styles_scripts() {
if ( function_exists( ‘is_woocommerce’ ) ) {
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
# Styles
wp_dequeue_style( ‘woocommerce-general’ );
wp_dequeue_style( ‘woocommerce-layout’ );
wp_dequeue_style( ‘woocommerce-smallscreen’ );
wp_dequeue_style( ‘woocommerce_frontend_styles’ );
wp_dequeue_style( ‘woocommerce_fancybox_styles’ );
wp_dequeue_style( ‘woocommerce_chosen_styles’ );
wp_dequeue_style( ‘woocommerce_prettyPhoto_css’ );
# Scripts
wp_dequeue_script( ‘wc_price_slider’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-add-to-cart’ );
wp_dequeue_script( ‘wc-cart-fragments’ );
wp_dequeue_script( ‘wc-checkout’ );
wp_dequeue_script( ‘wc-add-to-cart-variation’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-cart’ );
wp_dequeue_script( ‘wc-chosen’ );
wp_dequeue_script( ‘woocommerce’ );
wp_dequeue_script( ‘prettyPhoto’ );
wp_dequeue_script( ‘prettyPhoto-init’ );
wp_dequeue_script( ‘jquery-blockui’ );
wp_dequeue_script( ‘jquery-placeholder’ );
wp_dequeue_script( ‘fancybox’ );
wp_dequeue_script( ‘jqueryui’ );
}
}
}
Thanks for your support!
Hello,
You can use font awesome for menus and change the icon to one of the icons provided by the plugin using a css rule.
Here is a list of icons and their css content values: http://astronautweb.co/snippet/font-awesome/
Here is a css code example that can change the menu icon using font awesome icons:
https://www.screencast.com/t/TRMsEFoIIb
Thank you!
Hi,
Codes from other topics will probably not work in every situation. Themes do not share the same code and structure. You will have to make the modification specific for this theme. You need to register the new menu like this example
– https://www.screencast.com/t/DuXG6QMAj3b
– https://www.screencast.com/t/QNN4LY8ahh
Then create a condition in this file like this
– https://www.screencast.com/t/BrGgaDmC9Q
I have not tested this properly, but you can try it and see if it works for you. Here are some more conditional tags that you can try and test
– https://docs.woocommerce.com/document/conditional-tags/
Thanks
Hi,
To stop the ad from loading you will probably have to create conditions in the theme code, like Catalin suggested in previous replies in this topic. There are no options in the theme to not display certain ads for specific posts, from a given category. You can either enter the ad code and it will be displayed as it should, or don’t use the ad.
Some users use plugins that have options for this. You can search here on the forum for similar topics, like this one for example and see if it works for you
– https://forum.tagdiv.com/topic/disable-adsense-ads-on-specific-posts/
Thanks
@aj2ma Replied via email! Feel free to ask for refund here – https://themeforest.net/refund_requests/new We have over 50k sales on themeforest and we do not mislead anyone.
Please note that this activation error is caused by Envato server overload, caused by multiple requests. There are similar cases related to this that have been solved by simply trying again. Like these ones for example
– https://forum.tagdiv.com/topic/purchase-code-invalid/
– https://forum.tagdiv.com/topic/news-paper-theme-activation/
– https://forum.tagdiv.com/topic/activation-problem-2/
In some cases we even offer our help, and activate the theme for you.
@Chris S Thanks for your help! Please let’s stop this discussion here 🙂
Thanks!
Hello,
I am using version version: 7.8.
While logging in to the management screen, the URL is displayed at the bottom left of the page. Do you know the cause?
https://drive.google.com/open?id=0BwBOesVUMZwcS284VkxUZTU1UW8
Display URL
http://surfclub.jp/wp/wp-admin/post.php?post=1467&action=edit
Yuki
Hi,
If those are pages that are displayed in that block, the ajax filter above the block will not filter the pages by category. Pages do not have categories, and nothing will be displayed when you click on a category. Only posts can be assigned categories and tags.
I believe that categories could be added to pages through plugins or code modification, but I cannot say this will work with the theme or not.
You could filter pages by page author for example
– https://www.screencast.com/t/RVzll6VyeWZD
Thanks
Hi, thanks a lot.
It’s working, but it affects all the queries. I want to add a second loop in category.php to show posts not included in first loop. For example, in the main loop show posts with tag_id 32, and second loop show posts without tag_id 32.
When i add your action to functions php…only filtered posts are loaded.
Could it be possible?
My code in category.php is:
$args1 = array(
'cat' => $current_category_id,
'tag_id' => 32
);
$query1 = new WP_Query($args1);
while ( $query1->have_posts() ) {
$query1->the_post();
echo '
';
}
Thanks a lot!
Hello,
You can make some page building elements to be full width, by stretching the row they are placed in. For example the Full big grids
– https://demo.tagdiv.com/newspaper/full-big-grid-1/
You will need to stretch the row to get them full width: https://www.screencast.com/t/7OJaD8jJQ
Thanks.
Hello,
You can install multiple themes into your wordpress by default. You simply install a new one and it will show up next to the others like so: https://www.screencast.com/t/F27XxexR5k8
It is not recommended however to have multiple versions of the same theme like for example, newspaper7, newspaper 7.6, newspaper 8. That is wrong and it will cause errors.
Do not use multiple instances of the same theme.
Thank you!
Hi Catalin,
Thanks for your answer!
I got to this point.
The questions I have are the following:
1. Under the title there’s usually an AD. I don’t integrate (any kind of) ads on the website. Because of this, the right side of the video is always empty. Can I:
– a. Add a static image
– b. Add some [very short] descriptive text there?
The idea is to avoid having that empty space there. If that place can be filled with something else, please let me know
2. How complicated would it be to integrate support for Twitch clips? Is it possible doing so using a child theme? Would go the extra mile to do it myself if the integration is not crazy complicated for those not familiar with WP’s core. Here’s such an example. Twitch allows embedding the videos using a simple iFrame.
In articles & co, that’s easy to do, but I’d like to use the videos feature you provide and use along Facebook and Youtube videos also Twitch clips.
3. If I have a category called “videos” with 3 subcategories each looking similar to the one I linked at the beginnings of this post. Is it possible to ‘restrict’ the “related videos” displayed under the main video to a specific subcategory?
Thanks!
Hello nikthehat,
Notice that you can hide elements only for mobile devices if you will use the @media queries for mobile, like in the above example.
@media(max-width: 768px){enter your code} Try to create your custom CSS box using the Inspector Browser, according to our documentation here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
Hi,
You could try the solution from these topics for that error
– https://raventools.com/blog/fix-common-amp-error-wordpress/
– https://wordpress.org/support/topic/a-value-for-the-logo-field-is-required/
Thanks
Hi,
You can change the date format in the WordPress settings, and create the custom format you want according to this guide
– https://codex.wordpress.org/Formatting_Date_and_Time
For example like this
– https://www.screencast.com/t/d5YaPQpbb4
– https://www.screencast.com/t/Y33Ahont7g3
I used this time format in the example F j, Y, g:i:s A
Thanks