Forum Replies Created
-
Author
-
sharmstr
ModeratorCool!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAdd “Profile Link”
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorMy second response in this topic will explain how all of this works: https://archived.seventhqueen.com/forums/topic/bbpress-custom-sidebarwidgets
But really the whole topic may shed some light on what you’re trying to do. The bottom line is try a pluging like conditional widgets.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTheme Options > Blog > Display Meta Fields
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorso I donβt need index.php in child theme for now? But then remember the ticket no. #55485, we did some customisation for post row to 5 articles. I am a bit lost here now!
As I’ve said, you need to talk to Radu about that. I feel like I have to repeat myself many times. I asked you to delete the file 3 times before you did. I try to help many people here and it would be helpful if you take my advice when I give it the first time π
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo. Dont. Just delete the file.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou need to completely remove the FILE index.php from /kelo-child/. You cant just delete the code inside the file.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhat? You should never remove any files from the kleo parent theme. Only add files to the kleo child.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI got tired of waiting for you to remove it so I enabled the Kleo parent theme. Pagination worked. So it the custom index.php file that radu gave you. Marking this resolved.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAs I said. The blog page (where you are having the pagination issue) uses index.php. Please remove it from your child theme and see if pagination works again. If so, contact Radu and tell him his solution broke pagination.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI rarely check that email account π I’ll take a look though.
Okay, the reason I asked is that a few of the plugins I’ve checked that add og code will allow you to set the logo as the default image.
I also found this, which is probably what the plugins use as well: https://www.facebook.com/notes/hyperarts-web-design/set-up-your-website-to-control-images-text-in-facebook-status-update-links/10150320031290844
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorFirst off, I’m not sure how you did this, but your child theme was completely wrong. Its as if you just copied style.css from Kleo and put it in a folder called /kelo-child/. I’ve fixed that part.
Second, the blog page uses index.php. I see you have a custom index.php file in your child theme. Remove it and see if you still have the issue.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYay. I can read it π
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI used a plugin once that preserved the gif when saving for the Media library, but I cant remember if it also worked for the avatar. Do a google search for the WP plugin.
But BP saves the avatar using different routines so I doubt it would work. You should ask on the BP forums.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAre you still in development so I can play with the theme settings and plugins? Is there any way I can see it in english?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI was right. It was an echo’ing issue. Do this
COPY CODEfunction kleo_breadcrumb( $args = array() ) { return WPSEO_Breadcrumbs::breadcrumb( '<div class="kleo_framework breadcrumb">', $after, '</div>' ); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease only ask your question once.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorGive me access
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI dont know.
Anyhow, I played around with more code and I think this might be a better solution and it adds it to the single product page as well.
COPY CODEfunction kleo_title_main_content_woo() { if (sq_option('title_location', 'breadcrumb') == 'main') { $title_status = true; if( is_singular() && get_cfield( 'title_checkbox' ) == 1 ) { $title_status = false; } if ( $title_status ) { echo '<div class="container">'; echo '<h1 class="page-title">' . kleo_title() . '</h1>'; echo '</div>'; } echo kleo_breadcrumb(array( 'show_browse' => false, 'separator' => ' ', 'show_home' => __( 'Home', 'kleo_framework' ), 'echo' => false )); } } add_filter('woocommerce_show_page_title', 'kleo_title_main_content_woo'); add_action( 'woocommerce_before_single_product', 'kleo_title_main_content_woo' );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorEnable the 2015 theme temporarily and tell me if pagination works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDid you try resaving your permalinks?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhat are you using to produce your og code now?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m not clear on what you’re asking, but if you change the row to 1 column the images will be bigger.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorDon’t be π
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOooops π
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIt does work. I just added the css to your page using the inspector tool. See attached.
Try it again.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorThat’s probably because the yoast_breadcrumb function does an echo which will print out the breadcrumb right when its called instead of waiting for when kleo triggers the display. Looks like you can easily override that though. Also, try wrapping it in a div with the “kleo_framework breadcrumb” classes. See what happens when I change the code up a bit
COPY CODEfunction kleo_breadcrumb( $args = array() ) { return '<div class="kleo_framework breadcrumb">This doesnt echo</div>'; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorSounds like you dont have enough memory allocated. You need at least 128mb https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOkay good! π
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorRemove the Kleo login from them menu and create your own link to wp-login.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBy default the Shop sidebar has nothing in it to start.
You’re going to tell me I’m wrong, but what I think happened is you created another Shop sidebar, but actually changed the widgets in the default one.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTo remove the sidebar, you need set the page for full width.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe reason the Shop sidebar was added as a default sidebar is because you cant select a custom sidebar for the woo pages. You need to add widgets to the Shop sidebar.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe default side bar is call “Shop sidebar” (lowercase s on sidebar). Screenshots of a vanilla (fresh) install with no customizations.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorAdd this below the function I gave you
COPY CODEadd_filter('woocommerce_show_page_title', 'kleo_title_main_content');
Not sure how to get it to show up on the single product page though.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBecause Shop Sidebar is a default sidebar that everyone has. Its standard. You can create a new sidebar called “shop sidebar” and delete it. But the default “Shop Sidebar” will still exist.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m hesitant to give you this code because I think it will open up a huge discussion about how to tweak the code to give you exactly what you want, which is a bit out of scope for help here. So, I’m going to give you this with the caveat that you’ll have to sort out styling, placement and other issues on your own.
Turn off breadcrumbs in theme options and try this in your functions.php file.
COPY CODEfunction kleo_title_main_content() { if (sq_option('title_location', 'breadcrumb') == 'main') { $title_status = true; if( is_singular() && get_cfield( 'title_checkbox' ) == 1 ) { $title_status = false; } if ( $title_status ) { echo '<div class="container">'; echo '<h1 class="page-title">' . kleo_title() . '</h1>'; echo '</div>'; } echo kleo_breadcrumb(array( 'show_browse' => false, 'separator' => ' ', 'show_home' => __( 'Home', 'kleo_framework' ), 'echo' => false )); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou can copy the kleo_woo_get_mini_cart function to your child theme and edit the link. Towards the bottom of the function you’ll see the kleo-go-shop button. Change the link there.
That’s a pretty big function that will probably have updates in the future so its essential you compare the code after every update.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorWhy can’t you just override the kleo_breadcrumb function? Something like this in your functions.php file.
COPY CODEfunction kleo_breadcrumb( $args = array() ) { return yoast_breadcrumb('<p id="breadcrumbs">','</p>'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThere’s probably a plugin for that. Search the repository or ask on the Buddypress forum since they handle messaging.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts