4080 comments found.
How can i get the link in Video Link of the post (Red box) and insert it into an icon that will place at Blue box’s place ? Image: http://www.upsieutoc.com/image/hEj8
here is the image : http://www.upsieutoc.com/image/hEj8
Hi Duc,
Thanks for your comment.
For self -hosted videos, you have to upload video to your server directly through media, then use the video URL of your website to add to Video File field.
Best regards,
CactusThemes
it seem like you don’t know what i mean. I said that i want to create an Download button (or icon that i wrote above) include a link inside Video Link field (red box) at Blue Box, you should watch my image to know what i mean
Okay i added it, thanks for support P.S: Our Mobile Visitor said that they can’t see the player in video post, how can i turn it on ?
Hi Duc,
We have checked your video and seen that it is in different layout. Probably, it is caused by your Ads.
In order to view your video, please scroll down to the bottom of the page, click “View Full Site” to open video player. Please see our attached image for more details. http://imgur.com/p3SAUD8Best regards,
CactusThemes
Thanks for your help!
I wrote yesterday and still do not answer me. Where is the support?
Sorry for late response.
Please submit ticket to http://ticket.cactusthemes.com if you need 24-hours support
Best regards
CactusThemes
How do we change the contents of the header carousel? What if we don’t want some post videos to appear in the header carousel and only appear in the video section below? How do we do that?
Hi Mehreenomer,
Thanks for your comment.
The contents of header carousel is post items. You can change the header carousel content by going to your Page > scroll down, you will see Front Page Settings > Header Item IDs and Header Category (ID or slug).
And you absolutely control video posts on your header carousel by entering the IDs of post on Header Item IDs option.
Best regards,
CactusThemes
Can you please list down the steps step-by-step for me? I can’t see where the Front Page settings are.
Hi
Please change Page Template to Front-Page. You will see Front-Page setting appear.
Otherwise, please submit ticket to http://ticket.cactusthemes.com so we can check
Best regards
CactusThemes
Hello, I bought your theme but there are problems that are not explained well in your tutorial. I have to create a site for a youtuber with only one channel. 1) I want to use the homepage with the video BIG but I have not figured out how I view the customer video in the banner and the rest of the homepage. Where can I change those links of the demo? 2) I created the google API, but when I enter a new post / video does not give me the youtube data, like, views etc.
I urgently need help. Thank you
Can you help me, please?
Hi Bteseo,
Thanks for your comment.
1> You can go to your page (Page Template: Front Page), then scroll down ,you will see Header Style option. Choose Header Style: Big Carousel for your slider and you can enter post IDs on Header- Items IDs option to get your post on slider.
2> Please make sure that you have added correctly Google API Key and go to Theme Options > Single Post/Video > Auto Fetch Data > Select the data to auto-fetch.
If your issue is still not fixed, please create a ticket to our support system at http://ticket.cactusthemes.com/ and do o’t forget to give us your website’s URL and admin account. Our supporters will help you to check.
Best regards,
CactusThemes
Hello, thanks for the reply. The auto fetch is not working. I created the API for the web, is correct? Because it does not work? Can you explain step by step how to do? Thank you
Ok
I have solved auto fetch, thks
I added TM TOP Categories item into footer sidebar. Category name is published in black lettering on a black background. http://i67.tinypic.com/jpk936.jpg
Hi Smyrna66,
You can add this CSS Code to Theme Options > Custom CSS to change the color of category name
.tm_widget_categories ul li a { color: #FFFFFF !important;}
Best regards,
CactusThemes
thanks
Hi, is it possible to make the smart content box auto rotate?
Unfortunately, SCB does not have such feature
Hello, to transfer detube with video plugin does not work, I refresh but nothing happens, and the theme also has a problem on mobile, it always opens the menu
Hi
Please submit ticket to http://ticket.cactusthemes.com so we can help and please provide an admin account so we can process
Best regards
CactusThemes
Greetings,
I have a regular license for this theme… I was trying to download the files… However everytime the download is getting stuck between 85 % to 98 %... For some quite odd unknown reasons i’m not able to complete my download…
i tried downloading through different browser’s and even used a different computer… But still the same…
If u could please check and provide a working downloadable link for all files and documentations including the plugins… I would really appreciate the help…
Please kindly contact Envato Support at https://help.market.envato.com/hc/en-us regarding this issue
Hi, ? am update my theme and facebook share everytime share to video. Not url and pic. I select “Link back post url” but its not work now. I was not like this before updating.
Sorry i fix it. Problem is zencache…
I am having nothing but issues with this theme. I develop with WP_DEBUG set to true and this theme has so many errors/notices that it is very difficult to work with. It is throwing errors for plugins that I have not installed. This is not something I expect for a paid theme. Please fix these issues. To find what issues this theme is having, simply set WP_DEBUG to true (As all development should be using). Specifically, try to create a new post with this enabled.
It seems the recommended plugins are more or less required due to the errors that this theme throws… I do not want to use any of the theme plugins but if you don’t the theme seems to be very difficult to work with. So are the recommended plugins required or not? Sure the theme kinda works without them but at least fix these errors…
Why is this theme making queries for plugins within the theme even when these plugins are not installed or activated???
Vanilla WordPress install Issues:
NOTE: site does not use wp_ prefix. When developing it is common practice to not use wp_ as it would have identified this issue and a customer would not have had to report it…
wp_ prefix is hard-coded in the theme. Breaks on all non wp_ sites.
FIX:
Replace:
'wp_wti_like_post'
With:
$wpdb->prefix.'wti_like_post'
OR
$wpdb->wti_like_post (assuming plugin follows WP guidelines)
Actually, this plugin is not even enabled so this should check if it is enabled first.
No theme plugins enabled
Create a new Post:
WP_DEBUG = true
On Page load:
Notice: Undefined variable: url in /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/videos-functions.php on line 375
FIX:
Replace:
if( isset($_POST['tm_video_url']) )
{
$url = $_POST['tm_video_url'];
}
With:
$url = isset($_POST['tm_video_url']) ? $_POST['tm_video_url'] : '';
When saving:
Undefined index: tm_multi_link in /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/post-metadata.php on line 607
WordPress database error: [Table 'wp_dev2.wp_wti_like_post' doesn't exist]
SHOW FULL COLUMNS FROM `wp_wti_like_post`
Undefined index: tm_multi_link in /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/post-metadata.php on line 607
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/post-metadata.php:607) in /var/www/vhosts/wordpress/4.4.2/wp-admin/post.php on line 197
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/post-metadata.php:607) in /var/www/vhosts/wordpress/4.4.2/wp-includes/pluggable.php on line 1228
The page is broken with just errors. No WordPress backend is visible.
FIX:
Replace:
$links = $_POST['tm_multi_link'];
With:
$links = isset($_POST['tm_multi_link']) ? $_POST['tm_multi_link'] : '';
Bulk install of theme plugins (BROKEN):
With WP_DEBUG = true
Fatal error: Class 'TGM_Bulk_Installer' not found in /var/www/vhosts/wordpress2.dev/public_html/wp-content/themes/truemag/inc/plugins/plugin-activation/class-tgm-plugin-activation.php on line 1586
With WP_DEBUG = false
Blank page
Fix… include the class or use an autoloader…
I spent enough time attempting to solve the many issues with this theme. I actually do this for a living so i am not willing to isolate issues for free with this theme. I would like a refund… I have many other issues too but I have already purchased another theme so I am not needing this one anymore.
Hi
On which version of True Mag are you testing? Make sure you are using the latest version.
Best regards
CactusThemes
I installed the latest version on the day I posted this that was in my account to download. This was version. 4.2.5 I see now you are on version 4.2.7. I have already removed this theme and purchased another and have already spent far too long troubleshooting this theme to waste any more time on the matter. The project is moving along now so I cannot go back to isolate your issues.
Sorry for any inconvenience. If possible, please provide tickets to http://ticket.cactusthemes.com so we can help
Best regards
CactusThemes
Hi, another short question, when I activate buddy press the search box moves on top of the navigation. how can I fix this?
Hi, hopefully the last question. How can I integrate the social buttons in the header into the navigation line, so that they don’t consume an extra line. Thanks a lot for answering.
Also experience a lot of problems with the theme. wp_debug is full of errors. Is there an update to solve that?
Hi Scharani,
1. You can check the search box possition at Theme Options > Main Navigation > Top Navigation Layout. There is a layout that search box stays on navigation.
2. That is default design social account stayed in the same line with headline. So, you have to modify code to change its position.
Best regards,
CactusThemes
Hi, and thanks for your answers. I’ll try to to do that. I’ve got another problem. I’m working a lot with playlists and I want to have a list of recent playlists on the front page (similar to recent posts). I can’t find any that does this. Can you please give me a heads up? thanks.
Hi Scharani,
Thanks for your comment.
Currently, we do not have any options to make recent playlists on the front page.
You should automatically make it or find a freelancer to help you with this requirement.
We do apologize for this inconvenience.
Hopefully, you understand this
Best regards,
CactusThemes
Hi
How can I move the searchbar to the right side, instead of the left like it is on the demo here? http://themeforest.net/item/true-mag-wordpress-theme-for-video-and-magazine/full_screen_preview/6755267.
thanks
Hi Scharani,
You can try this CSS Code segment at Theme Options > Custom CSS to get that
ul.nav.navbar-nav.hidden-xs.nav-search-box { float: right; }
Best regards,
CactusThemes
Hi, we have a problem for update with envato. I have set plugin Envato and i have child theme. How can to update true mag not manually?
The auto-update plugin from Envato doesn’t work well. I’m afraid you have to upload manually
Best regards
CactusThemes
ty for your answer
Hi, Is it any way to replace original search by Ajax Search Pro:
Search shortcode for templates: <?php echo do_shortcode(‘[wpdreams_ajaxsearchpro id=8]’); ?>
Result shortcode for templates: <?php echo do_shortcode(‘[wpdreams_ajaxsearchpro_results id=8 element=”div”]’); ?>
Where should I put this codes to replace Top Navigation Layout (Search box in Navigation).
Why when add [wpdreams_ajaxsearchpro id=8] and [wpdreams_ajaxsearchpro_results id=8 element=’div’] in the widget area the not show proper layout of search and not showing pictures on the results?
It’s fine I sorted out.
can i make Post Views Count plugin count the view of video when user watching it in a playlist page ? (i mean when 5 users watching the video in playlist page, it will show us 5 views in single video page). Sorry for my bad English.
Hi Blonners,
Yes, it works now, the view count on playlist mode is the same as single video mode. After refreshing (f5), you will see the number of counting increases.
Best regards,
CactusThemes
ok, thanks. And is it possible if i put an picture in jw player and set skip ads for 5 seconds ?
I’m not sure what you are asking for. If JW Player allows that, why don’t you try? 
jw player only have a setting for video ads, i don’t know how to add an image into jw player like ads. Is ads management plugin of theme can do it or not ?
Video Ads plugin does not support JW Player, unfortunately
Updated to the latest version now the visual composer does not work! Any idea why?
Hi
Please download theme and plugins to the latest version to support WordPress 4.5
Yup, downloaded the plugin and updated the theme with the latest version. Problem still persist. Any idea why?
Please provide site URL + admin account to http://ticket.cactusthemes.com so we can check
Best regards
CactusThemes
Hi,
great theme, but I found a bug, even if I installed the current version of the theme 4.2.7 and VisualComposer 4.11.2.1.
The bug you can see at http://recordit.co/hbC8anLo29 Always I am using “Latest” as Condition any posts are shown. If I change this to “Random”
What to do now? Thanks for your support.
Hi Ixcellent,
Thanks for your comment. We find your question on our ticket system. Please check and follow your ticket at: http://ticket.cactusthemes.com/
Best regards,
CactusThemes
Hi I own both newstube and truemag and use both themes for various websites. Please do the same for truemag as you did for newstube and add JWPLAYER 7 support. I AM BEGGING YOU PLEASE LOL.
Nevermind I see it in theme options
HELP I cannot get it to work. i have put the correct path to jwplayer.js and correct license key but video player is blank and shows simply written text of video url and poster url. Please dont tell me to buy more support I am a longtime multiple purchase customer. Surely you have troubleshooted this issue before.
Hi,
Yes, both of those themes supported Jwplayer 7. We have checked Jwplayer 7 plugin in latest NewsTube theme version and seen that video is still working fine.
Please kindly review the configuration tutorial again. Otherwise, please send us a message through the contact form in our profile page, and leave admin account so we can check
Best regards,
CactusThemes
I get error messages on all of these plugins (all TrueMAG’s except for one, and had no trouble with the rest): JW Player for WordPress, TrueMAG – Movie, TrueMAG – Shortcodes, TrueMAG Rating and Truemag – Member. This is the recurring message: object(WP_Error)#568 (2) { [“errors”]=> array(1) { [“plugins_api_failed”]=> array(1) { [0]=> string(219) “An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.” } } [“error_data”]=> array(1) { [“plugins_api_failed”]=> string(2) “N;” } } Something went wrong with the plugin API.
Please ignore! I see that you provided the plugins. Thanks!
Hi, is the SAMPLE DATA supposed to be such a MESS – with some videos and images showing but not all – and in place of them, strings and paragraphs of html code and pixellated icons?
Hi
Make sure you have installed all included plugins in the package
Best regards
CactusThemes