Hi,
What happen if you use the example provided in the codex? https://codex.wordpress.org/Plugin_API/Filter_Reference/registration_redirect
Let us know,
Thanks,
laranz.,
Hi,
What happen if you use the example provided in the codex? https://codex.wordpress.org/Plugin_API/Filter_Reference/registration_redirect
Let us know,
Thanks,
laranz.,
Hi,
Sorry didn’t able to understand your question. You meant, the image sizes you set in Woocommerce -> Settings -> Display -> Product Images, didn’t take effect?
Let us know,
Thanks,
laranz.,
Hi,
It is in header.php you can move this line
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('mobile-sidebar')): ?>
above the
<?php et_get_mobile_menu(); ?>
Do the changes in the Child theme.
Let us know,
Thanks,
laranz.,
Hi,
You can translate the theme as described in our documentation:
https://www.8theme.com/demo/docs/legenda/index.html#!/how_to_translate
If you want to use multilingual site you need wpml plugin http://wpml.org/ .
Let us know,
Thanks,
laranz.
Hi,
You need to add them, you can try some plugins like this, https://wordpress.org/plugins/gravity-forms-custom-post-types/ ( didn’t test it out, but it will work ) you can try that too, so that the user can submit testimonials, and you need to approve them.
Let us know,
Thanks,
laranz.,
Hi,
Sorry for a delay in response.
You can control that via Responsive settings in the slider, you can check the video tutorial about it: https://www.youtube.com/watch?v=SVYuO2rlId0
For more tips and tricks visit their documentation: https://www.themepunch.com/revslider-doc/slider-revolution-documentation/
Let us know,
Thanks,
laranz.,
Hi,
Sorry for a delay in response.
Glad you installed the plugins successfully, but however I didn’t understand what do you mean by “Customize your site” can you explain a little bit more about the issue? You meant it is stucked when you try to import the demo?
If so,
1. Make sure the memory has a high value, https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
2. Also, make sure the timeout value is high too: for that use this plugin, https://wordpress.org/plugins/wp-maximum-execution-time-exceeded/
Let us know,
Thanks,
laranz.,
Hi,
Apologies for a late response, somehow I missed your ticket.
1. Login didn’t work: http://take.ms/fIzRr can you double check the login, so that I can check what’s going wrong.
2. As always, disable all the plugins, clear your cache both server and browser, and see that did anything.
3. Make sure all the theme and bundled plugins are up-to-date, for plugins download it from here https://www.8theme.com/download-plugins/ and make sure it is up-to-date.
Let us know,
Thanks,
laranz.,
Hi,
Add this in your functions.php file,
function wpse_19692_registration_redirect() {
return home_url( '/my-page' );
}
add_filter( 'registration_redirect', 'wpse_19692_registration_redirect' );
More info: https://codex.wordpress.org/Plugin_API/Filter_Reference/registration_redirect
Let us know,
Thanks,
laranz.,
Hi,
Glad we helped. 🙂
Let us know If you have any other questions.
If you’re happy with our service, don’t forget to rate us 5* in themeforest. 🙂
Thanks,
laranz.,
Hi,
In that case you can edit that. 🙂
Let us know if you have any other questions,
Thanks,
laranz.,
Hi,
Leave the portfolio.php file, it is from the parent theme, so if we do any edits it will be discarded with the update. Now, what we did with the child theme ( functions.php & content-portfolio.php ) will do the trick. 🙂
Let us know,
Thanks,
laranz.,
Hi,
I don’t think so anything get lost or not. You can get the content-portfolio.php from content-portfolio-old.php. I didn’t edit any portfolio.php
Let us know,
Thanks,
laranz.,
Hi,
Here is what I did.
1. Created the function child_print_item_cats in the functions.php
2. Rename your content-portfolio.php to content-portfolio-old.php
3. Copy the theme’s content-portfolio.php and create a new file with the same name in the child theme.
4. In line #54 of that file, change the function reference print_item_cats to child_print_item_cats so that it will point to the new function.
Let us know,
Thanks,
laranz.,
Hi,
I have a copy of your previous content-portfolio.php as content-portfolio-old.php you can use the old file if you want, and make sure you change the things I did in the new file, it will preserve what you already edited.
Let us know,
Thanks,
laranz.,
Hi,
Glad we helped. 🙂
Let us know If you have any other questions.
Thanks,
laranz.,
Hi,
If you want to exclude multiple categories, then remove these lines,
$term_list = wp_get_post_terms($id, 'portfolio_category');
$term_list = wp_list_filter( $term_list, array( 'term_id'=> '71' ), 'NOT' );
and add this,
$term_list = wp_get_post_terms( $id, 'portfolio_category', array( 'exclude'=> array( '68', '72', '80' ) ));
where 68, 72, 80 are the category ID respectively.
Let us know,
Thanks,
laranz.,
Hi,
1. Thanks.
2. It seems you edited the content-portfolio.php so only the code didn’t take effects, it seems.. Now, I edited the content-portfolio.php and also added the function in to the child, so that the change is update proof. 🙂
function child_print_item_cats($id) {
//Returns Array of Term Names for "categories"
$term_list = wp_get_post_terms($id, 'portfolio_category');
$term_list = wp_list_filter( $term_list, array( 'term_id'=> '71' ), 'NOT' );
$_i = 0;
foreach ($term_list as $value) {
$_i++;
echo '<a href="'.get_term_link($value).'">';
echo $value->name;
echo '</a>';
if($_i != count($term_list))
echo ', ';
}
}
Now the in-evidenza category won’t show in the description.
Let us know,
Thanks,
laranz.,
Hi,
Yes it is not possible, can’t reduce character according to the widths.
Let us know if you have any other questions,
Thanks,
laranz.,
Hi,
Glad it worked. 🙂
Let us know If you have any other questions.
Thanks,
laranz.,
Hi,
I wouldn’t recommend editing grid sizes, because it may cause issues regarding layouts, so fair warning. if you really want to do then you can do that like,
@media screen and (min-width: 1200px) {
.container { width: 870px; }
}
We’re using bootstrap defulat 960px grid, so if you want to customize that you can follow that standard. You can reduce the container width according to the screen width, reduce the min-width and also width according to your needs.
Let us know,
Thanks,
laranz.,
Hi,
1. It is possible, but it is out of the support of the scope, you can call our customization service if you need any help: https://www.8theme.com/our-installation-service/
2. Well, this need editing theme file, if you’re okay with you it, continue.
open up /wp-content/themes/woopress/framework/portfolio.php and in that you will see a function at 476, replace that function with this one,
function print_item_cats($id) {
//Returns Array of Term Names for "categories"
$term_list = wp_get_post_terms($id, 'portfolio_category');
$term_list = wp_list_filter( $term_list, array( 'slug'=>'in-evidenza' ),'NOT' );
$_i = 0;
foreach ($term_list as $value) {
$_i++;
echo '<a href="'.get_term_link($value).'">';
echo $value->name;
echo '</a>';
if($_i != count($term_list))
echo ', ';
}
}
I add one extra line,
$term_list = wp_list_filter( $term_list, array( 'slug'=>'in-evidenza' ),'NOT' );
or you can simply create a separate function with a unique name in your functions.php in child theme, and call that in content-portfolio.php in your child theme in line #54.
Let us know,
Thanks,
laranz.,
Hi,
Can you pass us the WP and FTP Login details, so that we can update that for you. Give the information in a private content.
Let us know,
Thanks,
laranz.,
Hi,
Glad we helped. 🙂
Let us know If you have any other questions.
Thanks,
laranz.,
Hi,
1. No we can’t change that after loading too, you need to click the filter to filter through.
2. You want to display only one category right? Or can you explain a little bit more about what you want to change, so that I can alter the snippet according to the needs.
Let us know,
Thanks,
laranz.
Hi,
For 6.
.portfolio-item .portfolio-image {
margin-bottom: 5px;
}
7. & 8.
.portfolio-descr h3 {
margin: 5px 0;
}
Let us know,
Thanks,
laranz.
Hi,
I updated the Woocommerce and the theme to its latest version, can you try clearing the browser cache, server side cache, and if you you’re using any cache plugin, clear all the cache, and check again.
If still it shows the error, then try stroefront theme woocommerce default theme, and check the issue is there too. In that case, some server settings needs to tweak, you can contact your hosting team when that happens.
Let us know,
Thanks,
laranz.
Hi,
In that case you can change like this,
<?php
$title = get_the_title();
if( strlen( $title ) > 55 ){
$title = substr( $title, 0, 55 ) . '...';
}
?>
<h3><a href="<?php the_permalink(); ?>"><?php echo $title; ?></a></h3>
Checking the length and then shorten that, if it is shorten then add the. … Theme is not responsible, it gives just a skin, if you want to change you need to customize that in your child theme according to your needs.
Let us know,
Thanks,
laranz.
Hi,
Use this Custom CSS,
.single-product .page-heading { display: none; }
Let us know,
Thanks,
laranz.
Hi,
1. Make sure the theme is registered with the license key just in case.
2. If still that fails, can you try a manual update of downloading the zip from themeforest, and unzip it and upload to wp-content/themes using your FTP. https://8theme.com/demo/docs/woopress/index.html#!/installation_upgrade
Let us know,
Thanks,
laranz.