-
-
Hi there.
I’m having several issues with my portfolio items, so I’ve put them all in one post and numbered them.
Question #1
I needed my portfolio items shown in order and Mihaila suggested a plugin that worked great as shown on the main portfolio landing page: https://misbegotten.us/artwork/
However, now when I expand each portfolio image to see it in full size, the arrows on the slider are going to the previous image and not the next image. It’s as if everything is backwards. For example, the first image only has a previous arrow and no next arrow. https://misbegotten.us/artwork/runaway-nun-issue-1-hospice/ How can I fix that?
Question #2
I want to remove the Related links section that show on the pages for each full-size portfolio image.
Question #3
Under the Related section, it says Project Details. How can I add information to that section? I don’t even know where I set that up.
Question #4
In the bottom of the comments section for each portfolio item, this text (<span style=”color: #000000; font-family: ‘Open Sans’; font-size: 15px; line-height: 20px;”>Notify me of new posts by email.) </span><span style=”line-height: 1.5;”>shows up right up against the Post Comment button. It needs padding.</span>
Question #5
My sharing buttons on the individual portfolio item pages are getting cut off at the top. How can I add some padding to them so they can be shown properly?
-
Hello,
1-That’s the theme’s default layout. You can switch the order by editing file single-portfolio.php.
2-That is not part of theme features. It is displayed by a third party plugin your have installed. Normally we do not give support for third party plugin. However, i will give you the css code to hide it. Add this code into your custom css box:
.portfolio_single #jp-relatedposts { display: none !important;}
3-Please see this video tutorial for more information on how to set up a portfolio item.
For more video tutorials regarding theme, check out our page:https://support.codeless.co/?page_id=454-Add this code into your custom css box:
.portfolio_single p.comment-subscription-form { padding-top: 155px !important; }
5-Again, this is a third party plugin you are using for shares. However ia can suggest this css code:
.portfolio_single .sd-content ul li { margin: 5px 5px 5px 0px !important;}
Best regards!
-
Thank you so much. Can I edit that PHP from my WP-Admin or do I need to go to my host’s control panel?
I’m afraid I don’t know how to code in PHP, so I’m not sure I would know what to do once I got there.
Your wonderful help fixed #2, 4 and 5! Much appreciated.
I have contacted JetPack support for their help with #3.
Thank you!
Susan
-
Hello,
You do not need to edit php. What do you want to edit there?
Theme files are located in wp-content/themes/tower. You can access some of theme files throw WordPress dashboard. Just go to Appearance > Editor, and access the other ones (the ones not listed here) in the location above. But this time you will have to go there using cpanel (or a ftp connection).
You can ask your host provider fro more information.However, for each of the questions above, you do not need to edit any php file.
Add the custom css code into your custom css box, located in General Options > Custom CSS Code (screenshot).
Let us know if you need further help.Best regards!
-
Ah, I learned something today! Thank you.
I’m still trying to resolve Question #1 to change the order of the portfolio items and how to do that. I sent you my login info in another reply. Can you help me out with that?
I will be forever grateful! :D
-
Hello,
Please go to file single-portfolio.php and find these lines:
<div class="nav-growpop"> <?php if(is_object(get_previous_post())): ?> <a class="prev" href="<?php echo esc_url(get_permalink(get_previous_post()->ID)); ?>"> <span class="icon-wrap"><i class="icon-angle-left"></i></span> <div> <h3><?php echo esc_html(get_previous_post()->post_title); ?></h3> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_previous_post()->ID), 'blog_grid', 'url')) ?>" alt="Previous thumb"/> </div> </a> <?php endif; ?> <?php if(is_object(get_next_post())): ?> <a class="next" href="<?php echo esc_url(get_permalink(get_next_post()->ID)); ?>"> <span class="icon-wrap"><i class="icon-angle-right"></i></span> <div> <h3><?php echo esc_html(get_next_post()->post_title); ?></h3> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_next_post()->ID), 'blog_grid', 'url')) ?>" alt="Next thumb"/> </div> </a> <?php endif; ?> </div>
Replace with these:
<div class="nav-growpop"> <?php if(is_object(get_previous_post())): ?> <a class="next" href="<?php echo esc_url(get_permalink(get_previous_post()->ID)); ?>"> <span class="icon-wrap"><i class="icon-angle-right"></i></span> <div> <h3><?php echo esc_html(get_previous_post()->post_title); ?></h3> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_previous_post()->ID), 'blog_grid', 'url')) ?>" alt="Next thumb"/> </div> </a> <?php endif; ?> <?php if(is_object(get_next_post())): ?> <a class="prev" href="<?php echo esc_url(get_permalink(get_next_post()->ID)); ?>"> <span class="icon-wrap"><i class="icon-angle-left"></i></span> <div> <h3><?php echo esc_html(get_next_post()->post_title); ?></h3> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_next_post()->ID), 'blog_grid', 'url')) ?>" alt="Previous thumb"/> </div> </a> <?php endif; ?> </div>
Best regards!
-
It worked! You’re the best! Thank you so much. :-)
-
Mihaila, on #3–
Jetpack gave me code to hide those two fields, but I would rather be able to fill them out.
For example, on this page: https://misbegotten.us/artwork/runaway-nun-issue-1-3-interview/ …
Problem #1: I can’t figure out where I fill out the Project Details. I did figure out the Project Description, though I haven’t filled it out yet. You sent me a link to a portfolio tutorial video for the Specular theme, but I have the Tower theme. I watched the one for the Tower theme, but I didn’t see how to fill out the details field.
Problem #2: If I’m on my Macbook Pro or my iPad Pro, I don’t see the Project Description field, but I do see the Project Details field under the social sharing buttons.
On my iPhone 6 Plus, I see both the Project Description and the Project Details field.
So what I need to be able to do is have both of those fields visible and also be able to fill both of them out.
Thank you so much!
Susan
-
You must be logged in to reply to this topic.