- NewsmagPage templates
- NewsmagCategory templates
- NewsmagFooter templates
- NewsmagDefault post templates
- NewsmagPost templates
- NewsmagHomepage – How to build and set it
- NewsmagtagDiv Composer Tutorial
- NewsmagCustom Post Type Support
- NewsmagNewsmag documentation
- NewsmagHow to use the Visual Composer plugin
- NewsmagHeader styles
- NewsmagSmart sidebar
- NewsmagCategory grid styles
- NewsmagCategory top post styles
- NewsmagHow category settings work
- NewsmagFeatured images
Hi,
The latest articles cannot be edited with the composer, it is not a composer element. This section is added when the required page template is selected
– https://www.screencast.com/t/6w22pyBJH3z
Remove it by selecting a different page template, or configure it using the available options created specially for it
– https://www.screencast.com/t/kL3QSJjgw
Thanks
Thanks a ton @simion . I was finally able to code the redirect after a lot of hit and trials. The following code has functionality to redirect users trying to access only bbPress Pages to Wp-Login page, and once they login using id or social profile, they will be redirected to the page they were trying to access.
Note: Make sure to paste the below code to Theme Functions.php , both main and mobile functions.php to make it work on desktop and mobile devices.
/**
* Redirect bbPress pages to registration page
*/
function redirect_login_page() {
$refer=urlencode($_SERVER["REQUEST_URI"]);
$isItExt = strpos(strtok($_SERVER["REQUEST_URI"],'?'), 'external');
if ( ! is_user_logged_in() && is_bbpress()) {
wp_redirect( 'https://medicforyou.in/wp-login.php' . '?redirect_to=' . $refer );
exit();
}
}
add_action( 'template_redirect', 'redirect_login_page' );
function redirect_after_login() {
global $redirect_to;
if (!isset($_GET['redirect_to'])) {
$redirect_to = get_option('siteurl');
}
}
add_action('login_form', 'redirect_after_login');
function redirect_login(){
wp_redirect( 'https://medicforyou.in/wp-login.php' );
exit();
}
add_action('wp_logout','redirect_login');
-
This reply was modified 8 years by
drvarun5179.
Hello 🙂
Is it possible to add a block with a gallery on the main page in the “Default Demo” template? If so, how to do it?
I’m using the “Photo gallery” extension.
I am able to add such block to subpages by moving the widget to the right place, but I would like to add a wide horizontal block at the bottom of the main page.
Any ideas how to do it?
Hi,
The header background color can be changed to your linking in the theme panel
– https://www.screencast.com/t/imbQN5KP
The craft demo uses header style 11, it has a logo image and a background
– https://www.screencast.com/t/w7hHOhNcmWwn
However a thing to note is that header style 9,10, and 11 do not have a limit for the logo image size. You can use any image you want
– https://forum.tagdiv.com/logo-favicon/
This demo would be an example of a full width big logo
– https://demo.tagdiv.com/newspaper_cars/
Regarding the footer section, there are many templates to choose from
– https://forum.tagdiv.com/footer-templates/
Some have predefined content, others are empty templates in which you can insert your desired widgets.
The demo used footer template 14, enter your own information in the theme panel and it will appear in the footer
– https://www.screencast.com/t/RPAcxC4qup
– https://www.screencast.com/t/ZstTQg601mr6
Or select a different page template of your choosing.
I believe you are referring to the excerpts displayed on modules (center aligned)
– https://www.screencast.com/t/RXiC4JzrN
Those could be justified with a code like this entered in Theme panel->Custom CSS
– https://www.screencast.com/t/wXUQ91O4RO
.td_module_18 .td-excerpt {
text-align: justify;
}
Rows can be split in columns in the row settings
– https://www.screencast.com/t/DNt18HtVh
You can use widget sidebars if you wish, there is an element for that
– https://www.screencast.com/t/YM3HYouq9x7D
Then you can display sidebars from your available ones.
Big grids and full big grids can only be placed on full rows, a bog grid cannot have a sidebar beside it. Use blocks and other elements for that. These are all the available grids and blocks
– https://demo.tagdiv.com/newspaper/big-grid-1/
– https://demo.tagdiv.com/newspaper/full-big-grid-1/
– https://demo.tagdiv.com/newspaper/block-1/
Thanks
Salutare,
Multumim pentru apreciere, incercam sa facem tot posibilul pentru a oferi un produs de calitate.
1. Da se poate, in setarile WordPress
– https://www.screencast.com/t/Tn9BGdFs
– https://www.screencast.com/t/16HPVEfDyrto
– https://codex.wordpress.org/Formatting_Date_and_Time
2. In author box trebuie introdus ID-ul userului
– http://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/
– https://www.screencast.com/t/VZJKCy6TOg
Vor aparea inforamntii preluate din profilul user-ului
– https://www.screencast.com/t/xFmhvLsoA
3. Icoanele de share vor fi ascunse automat, doar cand nu este destul spatiu disponibil
– https://www.screencast.com/t/oEPEJBgMOxOT
– https://www.screencast.com/t/h6YzT7qaE6
Sunt multe stiluri disponibile pentru icoane in theme panel
– https://www.screencast.com/t/25ub7K9b5
4. Acele tag-uri post fi customizate doar cu CSS, la momentul acesta. Nu este o setare pentru a personalize culoarea acestora. Poate va fi disponibila dupa un update viitor, nu as putea spune sigur.
Deci se poate folosi CSS in aceasta privinta
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
5. Sectiunea de latest (si sidebar aferent) va fi afisata cand este selectat acest page template
– https://www.screencast.com/t/ytNJMKHQmw4
Se poate customiza, sunt optiuni pentru aceasta sectiune. Sau se poate selecta un page template diferit.
6. Acele elemente din footer sunt predefinite. Unele footer templates contin elemente predefinite, altele sunt goale
– https://forum.tagdiv.com/footer-templates/
Elementele predefinite nu pot fi modificate. Se pot adauga widgets in footer configurate dupa preferinta
– https://www.screencast.com/t/G1gd1co9WdMv
7. Acela este un post template (post template 11). Sunt multe modele din care se poate selecta, indiferent de demo instalat
– https://forum.tagdiv.com/post-templates-2/
Pentru featured video posts se recomanda a fi folosite doar unele post templates
– https://forum.tagdiv.com/featured-image-or-video/
8. Se poate customiza in theme panel cu setarile disponibile
– https://forum.tagdiv.com/more-articles-box/
#Sugestii
1. Se poate selecta sa se incarce mobile logo can meniul e sticky, in theme panel
– https://www.screencast.com/t/HrQYiiKkHVqQ
2. Multumim pentru sugestie, o sa adaug acesta propunere pe lista noastra.
Multumesc!
When the slider revolution is activated on my theme. Newspaper 8. It over rides the default settings for posts. template..
The main menu bar no longer works correctly and the mega menu does not show.
All featured mages are not show in the post.
All links in the site now open in a new window instead of internally.
When the slider is disabled the site works fine again.
I have checked the page Global settings and tried each option on and off and no difference
I have and checked all the settings in each slide used and no change.
I have checked problem handling option and tried all including troubleshooting all and no change
Any suggestions ?
Thanks
I installed template and use without problem tagdiv composer on your demo theme and almost completely finished my page.
But it doesnt react on part of page and that part cant open in tagdiv composer.
Please help how to edit that part which doesnt react and doesnt open in tagdiv composer.
Here pics:
https://drive.google.com/open?id=12i_FW7rrsEUAry5NNq-DNgOOt4QxuPnB
https://drive.google.com/open?id=1dCxpbsIJWNs0j_Du30e8fsezok1RwwzA
thank you
Thanks Simion. Yes, we know how to delete pages and posts out of word press, etc. We tried everything you have said prior to receiving your reply. And still unable to delete the page. The host provider is insisting that their is a glitch in the template. This is associated with a wp_booster issue which I believe is in the theme?
I’ve moved into Newspaper 8, but am no longer able to achieve full-width rows like I had in newspaper 7.
In NP7, all I had to do was set the width selector of that row to “Stretch Row” and it was stretched to the full width of whatever screen was viewing the content–or “stretch row and content” and optionally “no padding.” Further, no matter what I set those to they aren’t even changing, which is to say none of the full-width settings render a full width row.
I also went to the “Template Settings” in the “Theme Panel” and set all of the components to full width.
I even created a fresh page to see if there was some sort of error with that particular page.
I haven’t yet installed the “Landing Page Elements” plugin, but it doesn’t make sense for a feature of the WPBakery Page Builder to be contingent upon another plugin.
Should I revert to NP7 for Full-Width sites?
Regards,
I have the following error when i’m tring to modify a page on my site:
vc-tabs.min.js?ver=5.4.5:1 Uncaught TypeError: Cannot read property ‘getRelatedTab’ of undefined
at HTMLDocument.changeHandler (http://…/wp-content/plugins/js_composer/assets/lib/vc_tabs/vc-tabs.min.js?ver=5.4.5:1:3497)
at HTMLDocument.dispatch (http://…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…uery-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:3:12444)
at HTMLDocument.r.handle (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…query-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:3:9173)
at Object.trigger (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…uery-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:3:11573)
at Object.a.event.trigger (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…query-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:9:8275)
at HTMLSpanElement.<anonymous> (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…uery-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:3:18991)
at Function.each (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…query-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:2:2881)
at a.fn.init.each (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…jquery-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:2:846)
at a.fn.init.trigger (…/wp-admin/load-scripts.php?c=1&load%5B%5D=jque…uery-ui-mouse,jquery-ui-draggable,utils,moxiejs,plupload&ver=4.9.4:3:18967)
at a.fn.init.$.fn.(anonymous function) [as hide] (…/wp-content/plugins/social-booster/admin/metabox/cmb2-conditionals-master/cmb2-conditionals.js?ver=1.0.4:11:9)
changeHandler @ vc-tabs.min.js?ver=5.4.5:1
dispatch @ load-scripts.php?c=1…lupload&ver=4.9.4:3
r.handle @ load-scripts.php?c=1…lupload&ver=4.9.4:3
trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:3
a.event.trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:9
(anonymous) @ load-scripts.php?c=1…lupload&ver=4.9.4:3
each @ load-scripts.php?c=1…lupload&ver=4.9.4:2
each @ load-scripts.php?c=1…lupload&ver=4.9.4:2
trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:3
$.fn.(anonymous function) @ cmb2-conditionals.js?ver=1.0.4:11
f @ load-scripts.php?c=1…embed&ver=4.9.4:116
(anonymous) @ load-scripts.php?c=1…embed&ver=4.9.4:116
dispatch @ load-scripts.php?c=1…lupload&ver=4.9.4:3
r.handle @ load-scripts.php?c=1…lupload&ver=4.9.4:3
trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:3
a.event.trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:9
(anonymous) @ load-scripts.php?c=1…lupload&ver=4.9.4:3
each @ load-scripts.php?c=1…lupload&ver=4.9.4:2
each @ load-scripts.php?c=1…lupload&ver=4.9.4:2
trigger @ load-scripts.php?c=1…lupload&ver=4.9.4:3
CMB2ConditionalsInit @ cmb2-conditionals.js?ver=1.0.4:184
(anonymous) @ cmb2-conditionals.js?ver=1.0.4:280
i @ load-scripts.php?c=1…lupload&ver=4.9.4:2
fireWith @ load-scripts.php?c=1…lupload&ver=4.9.4:2
ready @ load-scripts.php?c=1…lupload&ver=4.9.4:2
K @ load-scripts.php?c=1…lupload&ver=4.9.4:2
(anonymous) @ VM1993:2
T.e.string.f.function.c.(anonymous function) @ VM2016:51
(anonymous) @ VM1993:2
b @ VM1993:1
(anonymous) @ VM1993:2
T @ VM2016:51
l @ VM2016:49
So if i want modify the template or something else i can’t.
This error come out when i update wordpress from 4.9.3 to 4.9.4
I viewed the error from the console in the browser.
Could you help me?
PLS tell me when this will be fixed or what I need to do. I am NOT a programmer. This is VERY urgent. My store opening this week! TIA, jenny lens. Here are msgs:
Your theme (Newspaper) contains outdated copies of some WooCommerce template files. These files may need updating to ensure they are compatible with the current version of WooCommerce. You can see which files are affected from the system status page. If in doubt, check with the author of the theme.
Templates
Overrides
Newspaper/woocommerce/archive-product.php version 2.0.0 is out of date. The core version is 3.3.0,
Newspaper/woocommerce/single-product.php
The MaxMind GeoIP Database does not exist – Geolocation will not function. You can download and install it manually from http://dev.maxmind.com/geoip/legacy/geolite/ to the path:/wp-content/uploads/GeoIP.dat. Scroll down to “Downloads” and download the “Binary / gzip” file next to “GeoLite Country”. Please remember to uncompress GeoIP.dat.gz and upload the GeoIP.dat file only.
Thank you!
In my word press portal, I am trying to delete pages that were the original home page for our website. When I try to delete these pages, this is what I get:
Fatal error: Class ‘"td_block_template_4"’ not found in /home2/u2e1o4v2/public_html/wp-content/themes/Newspaper/includes/wp_booster/td_block.php on line 185
https://infomeddnews.com is the website. Please help.
Hi,
I’m using Newspaper 8.6, Header Style 3 – Multipurpose.
I have set Theme Colors > Main Menu Background to a solid color, but I want to create a transparent header on one page only using CSS.
So far I have tried the code below in the Live CSS – it changes the color of the correct area, but when setting the alpha to 0.0, it allows the color from the theme panel to show through – it does not make the header transparent to the background image. I’m using the template Pagebuilder + Overlay Menu.
.td-header-menu-wrap {
background-color: rgba(0, 0, 0, 0.0);
}
Can you please assist with the CSS override I need?
Thanks!
Hi, thanks for your reply.
sidebars are enabled on my templates so ready to go. (however i dont see sidebars when going to the widgets section of the regular wordpress panel – is this a problem?)
starting with my website homepage, i would first need to create a 2/3, 1/3 look to enable the sidebar to go into the right hand side 1/3?
I can see the widget sidebar option when using the composer. So i would ddrag that into the right hand side 1/3 space first yeah? and then populate the sidebar with the various things i want such as social counter, popular articles etc etc?
I have installed the same demo you mention, the global medicine. I then proceeded to edit the homepage with the tagDiv composer. Each element that is added with the composer can be edited with it.
Only the Latest articles and it’s sidebar cannot be edited with it. The latest articles section is displayed because of the selected page template
– https://www.screencast.com/t/MrrhItZlzaBL
Also the sidebar of this section is set there.
Other than this section, everything in the page content can be edited with the composer. If you could mention what elements exactly you are having problems with, it would be helpful.
Thanks
Hello ANM,
Please notice that our composer cannot be used for post pages, but only for pages. So, if you want to add the Call to action from each post pages without the author box, notice that you should do this from the code using the <?php echo do_shortcode ('your code here'); ?> method because another way of doing this does not exist, sorry! The code should have to be added to quotation mark should have to be taken from here -> https://www.screencast.com/t/qKWeLfGg -> https://www.screencast.com/t/DyEb0gJ9IYh -> https://www.screencast.com/t/tW8Vja2vx (example for post template style 1) and the result is here -> https://www.screencast.com/t/TOeFVx01Ob.
Thanks for the message!
Hi,
I have made some tests with the theme and latest version of Firefox, everything is working properly. There is no problem creating posts and pages, selecting a post template or anything else like that.
Try disabling all browser extensions and clear the browser cache
– https://support.mozilla.org/en-US/kb/how-clear-firefox-cache
Try if possible to test on a different computer using Firefox. Let us know the results.
Thanks
Hello developers,
I am trying to run a forum at my website, but there were difficulties with BBPress. Initially, i didn’t want to abandon Mobile Theme (super speed) for the sake of forum. I had previously asked questions about BBP compatibility but there were no solutions. However, i have made a simple solution: by directing new users (unlogged) to register/login page using the following code:
/**
* Redirect bbPress pages to registration page
*/
function kleo_page_template_redirect()
{
//if not logged in and on a bp page except registration or activation
if( ! is_user_logged_in() && is_bbpress() ) {
wp_redirect( home_url( '/register/' ) );
exit();
}
}
add_action( 'template_redirect', 'kleo_page_template_redirect' );
Problem? The new users are stuck on the same register/login page. I have been trying to find a solution to redirect users to the same topic, but haven’t so far. For now, m relying on Peter’s Redirect Plugin to redirect user to forum main page, but that is just “harassing” users.
If there’s any solution to that, will be highly obliged. It will also help me set up a new thread for Beginners Forum Guide.
Regards
Dr.Varun
I could not adjust codes shown as above. I need a step by step guide that I used template at my webpage.
my page is ” teksir . net “
-
This reply was modified 8 years by
ozgur.
Hi,
Indeed the Latest articles are displayed when the required page template is selected. Change the page template to a different one if needed. That can be done in these locations
– https://www.screencast.com/t/h2SAnWGnH
– https://www.screencast.com/t/cEOLC0YEJR
Thanks
Hello themesic,
Unfortunately, the theme does not have any such an option that allows you to add such a different ad per each category, sorry! You should edit the category templates, according to your category template used by you, adding the shortcode of your ads using the do_shortcode() method and before this, you will have to check what kind of category type you have to target it, using the is_category() function. Notice that is not a simple task and if you are not aware of the steps which are needed to take in this case, please consider hiring a freelancer/developer to help you because we cannot provide custom services at the moment, sorry!
Also, as a hint and for more information about this case, please consult the following topic from here -> https://forum.tagdiv.com/topic/ads-on-category-pages/ because there was explained how you could add that thing. For more information about the is_category(categroy_ID) function, please consult here -> https://developer.wordpress.org/reference/functions/is_category/
Hope this helps!
Thanks for your understanding!
Hi,
Let’s take them one at a time. On the homepage from what I can see, currently there are no theme elements
– https://www.screencast.com/t/ChCZY8Q7Lb
So any font there in the page content cannot be changed through theme settings.
Next the post title font on the module (blog page)
– https://www.screencast.com/t/dLrdx08Uxe
The font loaded I believe is what you wanted, it seems to be the general font set here
– https://www.screencast.com/t/mS0sxl2iQE
That general font setting is overridden by the individual font settings, by module (that is module 12 you are using)
– https://www.screencast.com/t/Pynj9REG3
In the post page the article title seems to be set in general as well
– https://www.screencast.com/t/5il52AwRj
– https://www.screencast.com/t/stwPlUMoKBPr
Each individual post template can have it’s own font for the article title in the post page. That post template is post template 10, so it would be here
– https://www.screencast.com/t/n5uPXKgGL
On category page, the page title font settings are here
– https://www.screencast.com/t/EStYBmOitNsm
If I misunderstood or forgot something, please specify exactly which elements you are referring to, and I will take a look.
Thanks
Hi,
i cant add a page or a post in FIREFOX (in chrome it works).
I cant go to the text area (also the sidebar section in the text are isnt shown in firefox).
I also cant choose a post template – something wrong….
all other newspaper installation i have are working fine, only this one (www.cityboost.de) have this issue.
some idea?
Hello alvaroizquierdo,
If you want to have the exact page layout, you simply should install the Dental Studio demo from our available demos or you should copy/paste the code from the below folder directly into your page. The source code for that page template is here -> https://pastebin.com/YuQu68Rc
Hope this helps!
Thanks for the message!
It’s 2018, and by this point I’m hoping someone has this figured out!
First, we all know that Google AdSense ads cannot be placed in a “floating” box, so we can’t use the feature TagDiv calls the “Smart Sidebar” with those ads.
Second, we all know having a big empty space at the bottom of our sidebars is BAD since readers often look for something else to click on when they are done reading.
While I do have other non-adsense widgets to put on the bottom, I can’t find a way to make the stay at the bottom while the adsense widgets scroll with the page using TagDiv’s Newspaper Theme.
So how do/did you go about solving this?
– Is there any way to add Ads to the single post template that will appear not in the article itself but above the sidebar widget, and scroll with the page?
On the homepage builder you can add Ads, blocks, and a Widget Sidebar to the side of the layout, but after much searching and reading many documents I can’t see how this could be done on a single post or by editing the single post template.
– Is there any way to have two sidebars on a single post – a default on top and second a “smart” one on the bottom?
My searches turned on this turned up nothing 🙁
– Is there any way to stick or make smart just certain Widgets?
I tried Q2W3 Fixed Widget but the widgets disappear 🙁 No other free widgets seem to be available.
*** Note: I will buy the first user with a working solution a large cup of coffee (or favorite snack) in appreciation! (via PayPal Donation) ***
(I will also pass out grinch awards for suggestions not related to my question, or for snarky replies! 😉