A week ago i have purchased DW Focus theme. The main problems i am focusing is:
1…. in url structure category/sub-category both are appearing.
2….. the second and important problem is in a post / article there is sharing widget alongside content. how to remove or change the place of this widget.
Hi,
Issue1: At the moment, you just possible remove the Categories base in the url.
If you like, you can use: /%category%/%postname%.html
in Custom Structure
and: /.
in Category base.
See the screenshot: http://prntscr.com/74acyl
Issue2: If you want to remove the Sharing section on the left hand side, you can add the following code to the style.css file:
.single .site-content>.hentry .entry-action {
display: none;
}
.single .site-content>.hentry .entry-content {
max-width: 770px;
width: 770px;
}
.single .site-content>.hentry .entry-action {display: none;}
@media (min-width:980px) and (max-width:1079px) {
.single .site-content>.hentry .entry-content {
width: 690px;
}
}
@media (max-width:979px) {
.single .site-content>.hentry .entry-content {
max-width: 100%;
}
}
@media (max-width:767px) {
.single .site-content>.hentry .entry-content {
max-width: 100%;
width: auto;
}
}
Also, if you want to change the place of this section, you can tell me detail about the position that you want to put it (Screenshot).
Hope this helps !
Please login or Register to submit your answer