Forum Replies Created
-
Author
-
AndreiModerator
You’ll probably better wait for the theme update as I firstly suggested.
It will come with better support for redirect and you will be able to set your log in redirect directly from the theme options panel.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI just tested to log in from the home page of your site and the page was properly refreshed and I was logged in.
I have tested from safari browser.Please try to clear your browser cache and try again yourself.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorCan you please provide me a link to your website and a demo account to test the behavior you’re reporting ?
Looking forward.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 2, 2015 at 16:23 in reply to: Better documentation about how all the features are supposed to work #60766AndreiModeratorHi, we already have on our to-do list to create new video tutorials and a better knowledge base.
Thank you very much for your feedback.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 2, 2015 at 15:55 in reply to: Hard reload need on Facebook login – redirect to same page #60764AndreiModeratorI’m sorry for the late reply but we’ve been extremely busy working on a big, major update for kleo theme which is set to be released in around one week.
This update should also address some improvements of the login redirects so I’ll kindly ask you to wait for this update.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorWith welcome.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi, unfortunately we’ve been extremely busy lately with a big update for kleo which is set to be released next week and we didn’t had any extra time to help you with this. Please note that the provided code is more a starting point and I would really recommend you to hire a developer to help you finish it and make it work as you want.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi, unfortunately there isn’t such option to switch them off.
I would recommend you to add this as a feature request in our voting system so we can take it into consideration in future updates.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Unfortunately I don’t know any other plugin to recommend with such features.
If you can reinstall/setup that plugin maybe I could give a look and resolve the redirect loop.Looking forward.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Just add this small css code into “Theme Options > Styling Options > Quick css”:
COPY CODEul#activity-stream{ overflow: initial; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Unfortunately no, this is the default buddypress behavior and you’ll find the edit profile link under the main “Profile” tab.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi @m33, we’ll release an update in around one week which will also address this issue.
Hope everything will work just fine after update.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModerator@iamj_kim I would recommend you to add this request in our feature request voting system.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorThank you for the feedback, we’ll address this issue in our next update.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorUnfortunately I can’t replicate this on my test install, can you please provide me a link to your website and login credentials ?
Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Sorry for the late reply but unfortunately Visual Composer Gallery Element doesn’t have support for captions.
You should contact the developer of the VC plugin and propose this feature to be added in future updates.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI’m glad I could help.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorJust download the theme again and you’ll get the latest version available.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 19, 2015 at 06:13 in reply to: Moving footer down on pages with not a lot of content, making it stick on bottom #59366AndreiModeratorPlease add this rule to your wp admin area under ” Theme Options > General Settings > Quick CSS “:
COPY CODE#main-container .template-page{ min-height: 80vh; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Firstly, SweetDate is a theme, not a plugin, you can upload the theme by going into your wp admin area under “Appearance > Themes”, and click the add new/upload buttons as you did in the plugins page.
Secondly, the theme documentation can be found inside the full package of the theme that you can download from ThemeForest, note that there are 2 packages, one lighter just with the install archive, and one a little bit bigger, with the documentation and the demo content.
And finally, your issue isn’t a feature request so I’ll be moving this topic to the right place.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
Here is a damn hell of a hack but it works, and pretty nice:
COPY CODEfunction get_post_id_as_custom_field($meta_value, $post_id, $meta_key, $single ){ if($meta_key == 'get_post_id'){ return $post_id; } if($meta_key == 'get_custom_progress'){ $current = (int)get_post_meta($post_id, 'current_cf_key', true); $total = (int)get_post_meta($post_id, 'total', true); return $current / $total * 100; } return $meta_value; } add_filter('get_post_metadata', 'get_post_id_as_custom_field', 10, 4);
Hooking in this level you can also grab the current post id, and also do any other math that you might need.
You should use them in this tags: {{ post_meta_value:get_post_id }} and {{ post_meta_value:get_custom_progress }}Hope it will help you,
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi mate,
I’ve given a deeper look at how vc grid item works and unfortunately they aren’t giving us the $post global inside the grid elements loop but I found another way in which you can get a custom field value in your grid element, assuming your custom field key is “test”, you can use the following code:
COPY CODE<div class="field-value-{{ post_meta_value:test }}">My custom field value: {{ post_meta_value:test }}</div>
So any shortcode that makes use of the $post global it won’t work in grid elements, we’ll investigate for a workaround but if you really need this right now I’ll recommend you to contact the author of VC plugin.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
In this case you might need to create your own custom shortcodes to make the math that you need.
You can start from the code provided in the first example link, and also you can find a few more info about how to build shortcodes here: https://codex.wordpress.org/Shortcode_APICheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI’m glad that you managed to deal with the problem.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI don’t think it’s from VC in this case, it’s probably from your custom field, double check that they have some values stored and that the field key is right. If you made those cf’s with ACF, then their shortcodes should work 100%.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorThe issue is returned by paypal because you are not allowed by some case to use their api service.
This might be because you don’t have a fully confirmed account or something like that.
I would recommend you both to firstly double check that your api credentials are correct and second you should contact paypal support if the problem still persists.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI just given a test of that plugin on a fresh new install using the latest version of our theme and I couldn’t reproduce what you’re reporting.
Be sure that you didn’t added any custom code in the functions.php file that might affect buddypress member queries, or probably another plugin that interferes and produces such error just on our theme.
Cheers.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi @paolabueso,
In your custom case, an additional code will have to be built in order to restrict the levels shown in pmpro levels page according to the user profile field that defines the type of the member.
If you don’t have a developer available to help you then you can email us at dev@seventhqueen.com for a quote.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
The file for the members directory is the following “wp-content/themes/kleo/buddypress/members/members-loop.php”.
Please be sure to copy this file into your child theme for maintaining compatibility with future updates of the theme.You can as well add the extra details with hooks, but for the content you’ll add, you’ll probably need to style it as well.
For the moment the members listing shortcodes don’t support extra details, but as you pointed out, it should be nice to have more details in the future.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorIf you’re using ACF then you might try to use their own shortcodes:
http://www.advancedcustomfields.com/resources/shortcode/Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
For the moment we are extremely busy with theme updates and as how this is custom integration and is not part of our theme we can’t help you very much with it.
If you can’t manage to integrate this custom scripts by yourself and you don’t have the proper knowledge to modify or complete them where is the case then I’ll recommend you to hire a wordpress developer to help you.
Thank you for your understanding.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModerator1. You should try to contact the author of the CPT UI plugin and see if he has any workarounds for enabling the cpt’s to appear into Visual Composer.
2. Sorry, there is the link: http://wpsnipp.com/index.php/functions-php/get-custom-field-value-with-shortcode/
3. In Grid Element, you can add a text block where you can format it’s value with the shortcode provided above.
Ex:
COPY CODE<div class="[field cf_key]">[field cf_another_key]</div>
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
1. This issue might be because caused because of the plugin with which you’re using to create those cpt’s, it probably registers the cpt’s after the full initialization of the Visual Composer plugin. As you have already founded, you can use the manually written query args, in which you can add pagination and other limitations as well.
You can find all the needed information to create your own query string in the following page: https://codex.wordpress.org/Class_Reference/WP_Query2. Here is a small function which will create a shortcode which you can use to get custom field values.
3. Our theme is built on top of bootstrap, so you can use the following markup in combination with the custom field shortcode to create your progress bars: http://getbootstrap.com/components/#progress
Hope this information helped you.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI’m glad to hear that your issue is fixed.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorCan you please post a screenshot pointing to which ajax search box do you refer ( as we have two of them )?
Looking forward.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorCan you please provide me an url to your page so I can see until where have you reached with this modifications and what’s not working ?
Looking forward.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi, a new update of the theme and also of Visual Composer will be released probably next week.
Hope it will help you fix your issue.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi, the issue was generated because of a missing function from the modifications you’re trying to add to your forum.
I have added the missing function at the top of your functions.php file, function in which you’ll have to define your support forums ids. You can turn off wp debug now.Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorI’m glad to hear that.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHi,
You don’t have to install any additional plugins, the term of “retina ready” refers to the fact that if you are accessing your site from a retina device, it will check to see if you have available images at a double size.
Here is a screenshot of our demo made from a retina enabled device and everything looks just fine:
http://seventhqueen.com/public-files/andrei_2015-05-13_16-24-23.pngIf you can provide me a link to the page of the screenshot with the issue then I can try to see if I can help you with a quick fix.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts