I tried everything and I can't modify my wp theme as I would like to.
With this Niktitate WP theme home page I would like to use that Portfolio section as a gallery. The only problem is that at hover there are two links, one for opening the portfolio page and one for opening the image.
I would like to delete the link for the portfolio and remain just with the link which opens the specified image.
I really hope you can help, here you can download the theme files where I couldn't find the answer.
Thank you in advance !
Use a child theme (you should do this as standard practice if you are already using a parent theme like Nictitate) and see if there is a template file for the gallery in the parent theme file structure. Duplicate the template file inside your child theme directory and edit it to remove the link that is created for the permalink.
Having a quick look at the Nictitate source code for one of the carousel elements it is related to a Kopa Carousel?? Not sure. You may want to raise a forum request to the theme/framework authors/support team.
Related
So i made a slideshow using HTML, CSS and JS.
It's for a personal blog i'm creating, so i would like to add the slideshow into a Wordpress theme that i purchased.
I created a child theme and tried to edit the function.php file and the style.css, and although i know some PHP it's really hard to understand how the code works and where to add mine.
Basically i want to display my slideshow initially, and then the rest of the Wordpress theme with all the posts and such.
Is it possible or should i only work with the customization options of the theme, although they're limited?
Since you've gone with a child theme, may I suggest copying a page template from the parent into your child theme?
Then you can copy your code for the slideshow via the editor into your child theme's copy of page template and use said template throughout your website for whatever page you'd like without colliding with parent theme updates.
Here's a relatively simple tutorial for creating a page template:
https://www.cssigniter.com/add-custom-page-template-using-child-theme/
I am trying to remove the default sidebar in wordpress. I tried several method's but none of them worked. I even tried editing the template files.
I am using woocommerce with the bazar theme.
just rename sidebar.php file in your theme directory and refresh the page if this not gonna help inspect the sidebar pick up the main div class name search the theme and comment the code . one of the easiest but not recommended way is to display none the div in style.css
I have download the plugin in the title to manage a photo contest. I want to customize the menu but if I modified the .css file it doesn't change.
This is the link to the page:
https://www.good-look.it/contest/
I modified the file in path wp-content/themes/blankslate/css/public.css
I search in whitch .php the stylesheet is linked but i can't find it.
In the plugin page demo (http://codecanyon.net/item/photo-contest-wordpress-plugin/full_screen_preview/8320636) menu is completely different so I think there is something wrong with my wordpress or with my theme. Blankslate is a basic theme that give you basic files to start write a theme.
Suggestions?
I want to have unique css styling in wordpress. I heard about page templates, but do they work on child theme. Is it possible to create template for my page in my child themes folder?
I am using WPbakery visual composer for my content.
Is it enough to write a page-659.php and put it to my child-theme and build my content as simple html page or are there any other solutions, to have a part content from parent theme's templates?
How to transfer a full content from parent theme for editing in my child theme page template? My parent theme uses framework, I want to skip it, and edit raw code? Is copy source code from web a good idea?
You are kinda stating the obvious... have you tried it? You seem to have the steps all figured out... and you're spot on.
Hi I'm new to wordpress I have been working on a theme I would like to have the original category.php file that needs to get added on the theme? I have tried to copy a category.php file from a theme that was created on the core of wordpress but the body is missing, where can I find the original category.php file template that will be used by wordpress when it is not being defined on my theme?
version: wordpress 3.5.1
As templates are going to have theme specific markup, you'll need to make revisions to any file that you plan on copying over if you want the page to work with your theme.
A simpler solution is to copy your page.php file and replace your post loop with that of the categories loop. This will allow you to easily maintain your site's design without having to rework any markup and can be accomplished pretty quickly by copy/pasting a category loop snippet.
A great starting place to see how these loops are structured is the WP twentytwelve theme found here: http://wordpress.org/extend/themes/twentytwelve
Much greater documentation can also be found in the codex here: http://codex.wordpress.org/Category_Templates
Template files are stored in:
/wp-content/themes/<theme_name>/
You can copy the category template from a theme, but then it wouldn't look like it's a part of your theme though and might be badly styled because of missing CSS rules.