Forum Replies Created
-
AuthorPosts
-
Hello TL,
I’ve purchased your theme recently.
The theme is beautiful, but I have the following issue:
I don’t have options to customize the top header, take a look: http://infinit.io/_/iyGEUsZ
Font and CSS: http://infinit.io/_/rJQmrud
Some color options in Colors: http://infinit.io/_/39p8X6x
Could you suggest anything?Right now, I have customized the header already by editing .php files.
I have the following question:
How to change the layout of the blog page and blog posts? I don’t see such option anywhere in the admin panel…Thanks,
ArtemNOTE: I have currently set up my home page to be “blog page”, not static page.
Hi,
This is not a bug, of course, but could you tell me how can I:Change the Home link in the breadcrumbs from blog.indielocalization.com to indielocalization.com?
Screenshot: http://infinit.io/_/3icwCD4
Currently, Roneus is installed in a WP network… The domain is blog.indielocalization.com (this is a subdomain of indielocalization.com). That’s why the home link is pointing to blog.indielocalization.com.
I’d like it to point to indielocalization.com.
Could you tell me which file in the database I should edit, and what I should write?
If not possible, how can I turn off the breadcrumbs? I don’t see such options in the admin panel.
Thanks a lot,
ArtemDanny
SupporterHello Artem,
1, To have all the options in Customizer panel, you’ll need to install & activate the TLG Framework plugin (this plugin is required in Roneous theme, it’s included Visual element, Customizer options, Page options, Custom post types,…). Make sure you have installed & activated TLG Framwork plugin like in this screenshot http://i.imgur.com/BzQKcLU.jpg
After you install the theme, you should see a list of suggested plugins (include TLG Framwork plugin) at the top of the WordPress dashboard.
If you already closed it out, you can go to Plugins folder of the Theme package instead to install “TLG Framework” plugin or just download via this link.Once you’ve installed & activated TLG Framework plugin, you’ll see full options in Customizer panel as below:
2, About blog page layout, Just follow the steps here:
Step 1. Go to Pages > Add New in your Dashboard.
Step 2. Choose a title like “Blog page”.
Step 3. Switch to the Visual Composer by clicking the Backend Editor button and add the Blog element.(You only see Blog element once you’ve installed & activated TLG Framework plugin)
Step 4. Select your page settings (header layout, page title, background,…) at bottom of the page.
Step 5. Click the Publish button.
In case you still can’t make it work, please send me the admin account of your site via Private reply so I can have a closer look at this case.
Hope this helps,
DannyDanny
SupporterHi Artem,
– Please follow the steps here to change the home link in breadcrumbs:
Step 1. Open up the “helpers.php” file in themes/roneous/inc folder.
And change the line 391 into this:
$home = '<li><a href="http://indielocalization.com/" class="home-link" rel="home">' . esc_html__( 'Home', 'roneous' ) . '</a></li>';
Step 2. Open up the “tlg_helpers.php” file in plugins/tlg_framework/includes folder.
And change the line 391 into this:
$home = '<li><a href="http://indielocalization.com/" class="home-link" rel="home">' . esc_html__( 'Home', 'tlg_framework' ) . '</a></li>';
– If you want to turn off breadcrumbs, just follow the steps below:
Step 1. Open up the “customizer.php” file in themes/roneous/inc folder, and change the line 198 & 199 into this:
$wp_customize->add_setting( 'tlg_framework_show_breadcrumbs', array( 'default' => 'yes', 'capability' => 'edit_theme_options', 'type' => 'option', 'sanitize_callback' => 'roneous_sanitize' ));
$wp_customize->add_control( 'tlg_framework_show_breadcrumbs', array( 'priority' => 5, 'label' => esc_html__( 'Enable Breadcrumbs?', 'roneous' ), 'type' => 'select', 'section' => 'system_section', 'settings'=> 'tlg_framework_show_breadcrumbs', 'choices' => $yesno_options ));
Step 2. Open up the “helpers.php” file in themes/roneous/inc folder, and change the line 385 into this:
if ( is_front_page() || is_search() || 'no' == get_option( 'tlg_framework_show_breadcrumbs', 'yes' ) ) return;
Step 3. Go to Dashboard > Appearance > Customizer > System, and switch the option Enable Breadcrumbs to “No”.
PS1: You can only see all the options in Customizer panel when the TLG Framwork plugin is activated.
PS2: In case you don’t want to modify the code, we’ve just released Roneous version 1.0.1 with bugs fixed on Breadcrumbs options which allows you to Turn off Breadcrumbs in Appearance > Customizer > System. Cheers!If you still can’t make it work, please send me the admin account of your site via Private reply and I’ll help you out.
Hope this helps,
DannyHi Danny,
TLG installed: http://infinit.io/_/HGwgKnM
Options are still missing: http://infinit.io/_/YivYcuqI am using a multisite WP, your theme is installed on a subdomain.
Update: I have uninstalled TLG, and then I can’t install it again:
1. http://infinit.io/_/vxSEvCB
2. http://infinit.io/_/J7DvMn6I click Please try again or reload, doesn’t help.
I turned off Wordfence plugin, didn’t help.
Could you suggest anything?
Thanks,
ArtemI can’t upload it even via FTP with Filezilla..
Hi
It seems I’ve managed to change the link to point to our home page. But I completed only one step from your instructions, because I can’t install TLG now:
Step 1. Open up the “helpers.php” file in themes/roneous/inc folder.How bad is this?
Danny
SupporterHello Artem,
Thank you for the screenshots, I think that because TLG Framework plugin do not like being network activated.
Also, what errors you got while uploading plugin via FTP with Filezilla? Did you try to upload via cPanel?
After activate TLG Framwork plugin, you can try the solution here to see if the Customizer options appear or not:
==> Open up the helpers.php file in themes/roneous/inc folder:
And modify the roneous_is_plugin_active function into this (around line 66):
if( !function_exists( 'roneous_is_plugin_active' ) ) { function roneous_is_plugin_active( $plugin ) { include_once( ABSPATH . '/wp-admin/includes/plugin.php' ); $activated = is_plugin_active( $plugin ); if( ! $activated ) { $activated = is_plugin_active_for_network( $plugin ); } return $activated; } }
You may also want to try the multisite plugin manage plugin to activate TLG Framwork on individual sites: https://wordpress.org/plugins/multisite-plugin-manager/
Another useful article for plugins in multisite: https://premium.wpmudev.org/blog/display-network-activated-plugins-on-wordpress-multisite-blogs/
If the problem persists, please send me your site URL and the WordPress admin account + FTP info in private reply so I can help you out.
Best regards,
DannyDanny
SupporterHi Artem,
The reason is TLG Framework is network activated on your blog, so it isn’t auto detected on multisite yet.
For the solution, please follow the topic here: http://www.themelogi.com/tickets/topic/missing-options/#post-123Thank you.
Hi!
Is it possible to hide the topbar in the header (where there is the phonenumber, the email and the social icons)?
I tried a “display:none;”, and it works, but not when I’m on a mobile version.
(I haven’t upload the wordpress theme on a website, I’m first working with it on a MAMP Local server)
ThanksPS: Do you need my Purchase code?
Danny
SupporterHello kevinlemaguer,
Thank you for using the Roneous theme!
To hide the topbar in the header, you can select a default Header Layout with No Topbar in Appearance > Customizer > Header:
Or you can select a Header Layout with No Topbar in each of the page settings (which can override the setting from the Customizer panel):
Please let me know if this can work for you.
P.S: You don’t need the Purchase code for now 🙂
Best regards,
DannyHi
I see that I have TLG in my CMS: http://infinit.io/_/wTANd2SBut I can’t see it in my lists of plugins in my network.
I will try deleting and re-uploading again via Cpanel later.
ArtemI have managed to upload and activate TLG, seems everything works now, thanks
Hello, could you advise how to change some more links:
The “Our blog” link in the breadcrumbs points to the article which is currently open, but it should point to blog home (http://www.blog.indielocalization.com)…
Take a look: http://infinit.io/_/Pfj9w2pCurrently, the “Home” link is pointing to our main domain (http://www.indielocalization.com), I have changed it as you explained.
Also similarly, the logo (http://infinit.io/_/UBggTm8) should point to our home on the main domain http://www.indielocalization.com
Could you provide code snippets, please?
ArtemAlso, could you help with this too:
After I changed to HTTPS, icons in the header went missing: http://infinit.io/_/Rr3MCUeThanks
Danny
SupporterHi Artem,
Please follow the steps here for there changes:
1, To change the ‘Our Blog’ link, you can open up the helpers.php file in themes/roneous/inc folder, and change the line 417 into this:
$breadcrumb .= '<li><a href="http://www.blog.indielocalization.com">' . esc_html( get_option( 'blog_title', esc_html__( 'Our Blog', 'roneous' ) ) ) . '</a></li><li class="active">' . esc_html( get_the_title( $post->ID ) ) . '</li>';
2, To change the ‘Logo’ link, you can open up the layout-standard.php file in themes/roneous/templates/header folder, and change the link in around line 6 into this:
<a href="http://www.indielocalization.com"> ... </a>
( You will need to change logo link in the other header layout files also. For ex: layout-standard-no-top.php, layout-transparent.php,… )
3, About Icon font, I have just checked your site in https, but it seems to work fine as the screenshot below. Did you fixed it?
Hope you get this solved, please get back to us if you should need any assistance.
DannyDanny
SupporterHi. Glad to hear that you’ve figured it out 🙂
If you need any further support, please kindly open a new ticket on our forum.
Best regards.Hello i had wanted to create a portfolio session where they would be categorised. but dont seem to get it even in Visual composer when i add portfolio element in my page.
Thank youDanny
SupporterHello Erech,
To create a portfolio Page, please follow the steps here :
1. Go to Pages > Add New in your Dashboard.
2. Choose a title like “Portfolio”.
3. Switch to the Visual Composer by clicking the Backend Editor button and add the Portfolio element.
4. Make sure the Row Type is set to Full width (Stretch Row). Click the Publish button.You can see more details about creating portfolio page in the link here: http://www.themelogi.com/docs/roneous/#!/portfolio
And here is the document about adding Visual Composer element to a page: http://www.themelogi.com/docs/roneous/#!/page_creationHope this helps!
DannyAnd also its seems aside the heardetitle addon which color can be changed i cant change any text or title of an addon color can you please help me with this?
Danny
SupporterHello Erech,
You can use the Single Header element to customize the text, font and color of the header title. Please follow the steps here:
1. Hide default title of the page (in the Page Settings section at bottom of the page):
2. Add Single Header element to the page, right above the Portfolio element:
So your page content will look similar like this:
3. Save and see the changes.
Hope this helps,
DannyThis reply has been marked as private.Anonymous
InactiveHi,
On my blog page i have selected the following options
Header layout: Transparent header dark
page title layout: Centre parrallax large
Page title background image type: Featured image
I have set a featured image, yet the blog page shows up as plain white.
I am using the same settings for all my other pages and the respective background shows up.
Link: http://mintdesignstudios.com/blog/The website is under maintenance so you will need to login to view the page.
Thanks for your help.
Anonymous
InactiveThis reply has been marked as private.Hello, How do i link my menus to it row of navigation. Note: is a onepage scrolling website. Thanks for the help.
Danny
SupporterHi there,
You can find the option to disable loader in Appearance > Customier > System, and set the Enable Preloader to No.
And you can create a new topic in the link here: http://www.themelogi.com/add-new-ticket/
In case you still can’t create one, please send me a screenshot about the problem.Best regards,
DannyDanny
SupporterHello erech,
You can create a One Page scroller with Row ID in Visual Composer and Menu, for more details please refer to the link here:
http://www.themelogi.com/docs/roneous/#!/onepageStep 1: Create page with multiple rows. In every row you want to navigate, input the ID of the row.
Step 2: Create navigation menu using Custom Links menu type and input “#” follow by Row ID in URL text input field.
Cheer,
DannyDanny
SupporterHello Amritad,
Thank you for using our theme.
The reason you can’t see header background image in blog page is because you have set this page as Posts page in Settings > Reading.
So you will need to go to Appearance > Customier > Blog to change the header settings for this blog page.
Otherwise, if you want to use page setting for blog page, please refer to the document here for creating blog page with Visual Composer: http://www.themelogi.com/docs/roneous/#!/create_blog_page (you can only use page settings if the page is not set as Posts page in Settings > Reading)
Hope this helps!
Dannyhi ,
i install child theme and activate it so everthing is messup before with the main theme everything is working fine.
what is the problm please..
very urgent . why it messup everything..
regards,
amerAnonymous
InactiveThat worked. Thanks a lot.
Danny
SupporterHello amer,
You can try to download and re-install the child theme via the link here: https://app.box.com/s/frme31osj9u6h5eea8i5i0emjyqpzooo ( delete the current child theme, upzip the file, upload to wp-content\themes and activate the child theme). And then go to Appearance > Customize, click on Save button to reset the CSS.
In case it’s still not work, please send us a screenshot about problem, your site URL and the admin account via private reply so I can check it out.
P.S: If you install child theme, you’ll need to reset your theme options via Appearance > Customize, and re-activate the widgets also.
Thank you,
DannyHi ,
i need to make it multilingual . the second language is arabic . so the for the arabic language we need the make the rtl. from where i can find the rtl.css i mean exactly..because i want to use the arabic font for the arabic side. that is why i need the rtl.css
thanks
thanks this is done
once of the plugin become inactive when i install the child theme
regards,
amerHi ,
i want to make the second languages so this is done.
there are two problem are coming
01. filter on the “work art home page” if i chagnes the filter category to arabic to its not working
02. second thing the footer that is in the english side like copyright this text that i added throught the appreance >> customize and footer . now how i can make the translation for the arbic side. if i chagne the same way so the arbic will come on both of the side english and arabic..
please i need your quick reponse
thanks in advance ..
regards
AmerDanny
SupporterHi Amer,
Thanks for writing in!
If you want to translate footer text, you’ll need to modify the footer file so that it can be translated as other normal text.
For example: You can open up the layout-standard.php file in themes/roneous/template/footer folder, and change the code below (around line 45):<?php echo wp_kses(htmlspecialchars_decode( get_option( 'roneous_footer_copyright', esc_html__( 'Modify this text in: Appearance > Customize > Footer', 'roneous' ) )), roneous_allowed_tags()); ?>
… into this:
<?php echo esc_html__( 'Your footer text in arabic to be translated', 'roneous' ); ?>
And then you can translate the text into English with your multilingual plugin.
Best regards,
DannyDanny
SupporterHello There,
Thanks for writing in! Regretfully RTL isn’t a feature offered by Roneous. It could be possible with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer to assist you with this.
Here I can provide you a starter rtl.css file so you can put it to Roneous theme folder: https://app.box.com/s/7lt6gd4bgrh441yijqtbf0vc7ly9c3mc
You can find more details of making RTL support in the article here: http://codex.wordpress.org/Right_to_Left_Language_SupportThanks for understanding. Take care!
Hello, all my pages header images are plain. how do i make them appear after setting a feature image.
Also with some other element such as call to action has a default color of black. how do i change that color to my choice. don’t have any text or any design option to change colors. thanks
Danny
SupporterHello Erech,
1, In order to use feature image for a page title layout, please select the settings at bottom of the page editor as below:
List of Page Title Layout that supports header images : Center Background, Center Background Large, Center Parallax, Center Parallax Large, Left Background, Left Background Large, Left Parallax, Left Parallax Large
Page Title Background Image Type: Featured Image
2, To change the background color of call to action element, you can use the settings in Row setting > Design Options as the screenshot below:
Or you can also use Row background color preset option to change background color of elements.
If the problems still persists, please send us a screenshot about the issue and your site URL + admin account via private reply so I can have a look at it.
Best regards,
DannyThanks for your support but with the call to action i didn’t mean the background. sorry for not being specific i meant the text itself. Thanks again
Danny
SupporterHi there,
The text content in Call to action element is based on the Row background color preset:
If the Row background color preset is Light or Gray ==> Text color is dark
If the Row background color preset is Dark or Highlight ==> Text color is lightIn case you want to change custom color for title/subtitle/icon of Call to action element, you can using the file tlg_cta.php here: https://app.box.com/s/3i6qyzfoe1a8gfx2yvu0qr2spf4rl7uq
… and replace with the file in plugins/tlg_framewotk/includes/vc_shortcodes/tlg_cta.phpAfter that, you will get the “Color Options” tab as in the screenshot here:
Note: You’ll need to “Save” the page before the new color options can take effect.
Hop this helps,
DannyI created a landing page. I was able to link custom links to my pages on the landing page with the help you offered. But if i click on a menu and it goes to another page like say Blog, I am not able to return to the landing page if i click any of it menu.
-
This topic was modified 6 years, 10 months ago by
erech.
Anonymous
InactiveI can’t activate the licence: license not found. Do i need to get extra licence to be able to use Visual Composer?
Danny
SupporterHi izfaus,
Your Roneous theme purchase does not give you individual Visual Composer, Revolution Slider licenses that allow you to activate or download these plugins as you wish. Activation doesn’t mean the plugin will not work but only that you cannot received direct updates. Please don’t worry if you see warning messages about the plugin license activation.
You can use these plugins with the Roneous theme, and you are fully compliant with the Envato’s policy, but you cannot activate them as the owner.
Anytime Roneous is updated, the latest plugin version for Visual Composer, Revolution Slider will be included for free, so you don’t need to buy your own licenses to properly work with the plugins.
These rules ensure we will fully test plugins to make certain there are no bugs that will conflict with our own update. We also fully test new theme versions before releasing them to our customers.
Best regards,
DannyDanny
SupporterHi erech,
About this issue, you will need to use a same Off-canvas Menu for the Landing page & Blog page. To do so, you can go to Appearance > Customize > Header, and set Header Layout as “Off Canvas Header” so that the Off-canvas menu is using in entire site.
Hope this helps,
DannyAnonymous
InactiveI installed Roneous in wordpress and when I went to activate the TLG Framework Plugin, all the customization tools appeared but it caused my page to freakout and show the following Fatal Error Report both in the editing page and on my actual website:
Fatal error: Allowed memory size of 103809024 bytes exhausted (tried to allocate 72 bytes) in /nfs/c05/h03/mnt/69994/domains/thebandcalledkin.ca/html/wp-content/plugins/tlg_framework/includes/lib/lessc.inc.php on line 2897
What’s wrong?
Thanks for your help!
Danny
SupporterHi Kaili,
Sounds like your host has PHP configuration limits that are set too low to complete the process. So if you’ve got a timeout error and stuck on there, this is 100% due to the server configuration or a security setting that does not allow to import content to your server. In this case you should contact your hosting provider and ask them to increase those limits to a minimum as follows:
max_execution_time = 900 max_input_time 600 memory_limit = 256M post_max_size = 64M upload_max_filesize = 64M max_input_vars = 5000 allow_url_fopen on
This is most likely due to your server resources being limited by its configuration – most commonly these are: max_execution_time and memory_limit . If working on a localhost increasing those limits is easy – simply head over to your PHP.ini configuration file, find where those directives are located and increase them to for instance:
max_execution_time = 180 memory_limit = 256M
If you’d rather stay away from your PHP.ini file you can add this code to your ‘wp-config.php’ file (found in the root of your WP installation) until you manage to import your data, it will also increase your max execution time and memory limits at runtime:
set_time_limit(180); define('WP_MEMORY_LIMIT', '256M');
If none of those work and you are using a hosting somewhere you can always ask them for a quick assistance with this via their Live Chat or Support Phone. It’s your right to ask for these updates as you paid for their service and they usually react timely upon similar requests.
Best regards,
DannyHi,
After I installed the Roneous template, I tried to activate the visual composer plugin license. However, I get the message:
“NO LICENSES FOUND
It seems that you do not have any valid license for Visual Composer. What does it mean? Visual Composer is a Visual Composer application that can be used to create visual effects. ”What can I do to activate this license so that I can use this plugin?
Beste regards,
Rui MiguelThis reply has been marked as private.Danny
SupporterHi Rui Miguel,
When you purchase a theme from ThemeForest that bundles Visual Composer, Revolution Slider, you are free to use these Premium plugins with the theme.
However, your Roneous purchase does not give you individual Visual Composer, Revolution Slider licenses that allow you to activate or download these plugins as you wish. Activation Visual Composer doesn’t mean the plugin will not work but only that you cannot received direct updates. Please don’t worry if you see warning messages about the plugin license activation.
You can use these plugins with the Roneous theme, and you are fully compliant with the Envato’s policy, but you cannot activate them as the owner.
Anytime Roneous is updated, the latest plugin version for Visual Composer, Revolution Slider will be included for free, so you don’t need to buy your own licenses to properly work with the plugins.
These rules ensure we will fully test plugins to make certain there are no bugs that will conflict with our own update. We also fully test new theme versions before releasing them to our customers.
P.S 1: Your activation code above is the purchase code for the Roneous theme itself (not the code of Visual Composer or Revolution Slider plugin), so please don’t try to use this code to activate Visual Composer or Revolution Slider.
P.S 2: We’ve just update our Knowledge page in order to better explain the license information.
Best regards,
Danny -
This topic was modified 6 years, 10 months ago by
-
AuthorPosts