Forum Replies Created
-
AuthorPosts
-
Thank you, notes bellow
I appreciae the help Jossue, I still want to try and get to the bottom of this.
I have tested every php version (default install) from php 5.2 to php 5.6. Everything yields the same result. So I went ahead and tested the exact same install on a completely different server of mine with a default easyapache build of php and had the exact same results.
Can you tell me the exact php version you have installed where you said you tested my code and it worked correctly for you? And if you can provide the php.ini I can replicate your exact same setup, that would allow us to see if the bug is related to my environment or a theme bug since you are still on the fence.
Right-o and I appreciate your help here, but I’ve given you full access to the server, you can see the only thing installed and active is the parent theme and nothing else. I’m happy to tweak whatever server settings you believe are causing this but I don’t think that’s the case.
I’m running php 5.4 if that’s relevant but can easily switch to any other php version.
I just want an appropriate solution because going back to edit ALL of my portfolio items is not really an option and adding an empty tag is not precisely a professional solution here.
Cheers,
Jose R. LopezI’m not sure that makes sense at all (using an empty tag). I can use it as a work around but ideally it should work with only two (and it was working before, it only broke after an update). So would you confirm this is in fact a bug and escalate it for a future fix?
Thanks.
Check that same sample again.
Looks like the bug is related to using two thirds column.
This DOES NOT WORK:
[av_one_third first]Add Content here[/av_one_third] [av_two_third]Add Content here[/av_two_third]
This DOES WORK:
[av_one_third first]Add Content here[/av_one_third] [av_one_third]Add Content here[/av_one_third] [av_one_third]Add Content here[/av_one_third]
That didn’t make a difference.
I reverted the change back to original but have now enabled file editing in case you want to try out yourself. You should be able to edit within wordpress now. I have also given you ftp access bellow just in case
Ok I was finally able to create a development website that I can provide login for.
I have removed all plugins and activated the parent theme for you to test.
Thank you. That seems like a viable alternative but sadly it would take me too long in adjusting all the portfolio entries one by one for this so I decided to disable the functionality.
I still feel this is a bug, Im not sure if perhaps it is related to a recent update and my active php version (5.4) or what exactly is causing it but I have ruled out everything else.
I have disabled all the plugins, I have removed all the themes except for the parent and the problem still happens, since I have nothing else under wordpress other than the main theme I am inclined to think the problem is with the theme. I wonder if in your test you are running wordpress 4.4 which is what I have and perhaps the issue is specific to this wordpress version?
Thanks.
php safe mode is disabled on the server.
is that on 3.4.7?
Try this on one of your demos so you can reproduce it:
[av_one_third first] One Third Column [/av_one_third] [av_two_third] Two Thirds Column [/av_two_third]
That should be on a porfolio entry, on the “Preview Text Box” at the bottom of the entry. This is the portion that shows up on the main gallery page when you click on an item.
I’ve tried that on the parent theme with NO PLUGINS installed and nothing other than your theme enabled and it DOES NOT converts the shortcodes, it just outputs the shortcodes itself without processing. So in your demo it should result in the same, you could then troubleshoot further once you have confirmed the bug.
Thanks!
I did explain before (twice) that I have already tried that and even after updating the theme tried a second time.
It makes no difference.
That has no effect. I removed everything and even reverted to the original theme and also disabled all plugins. The problem is with the theme, it is not translating the shortcodes on the portfolio items specifically in the “Add Preview Text” field for each item. It does convert them correctly in the body of the page, just not on the “Add Preview Text” box that is available on each item.
Thanks.
Hey Andy, thank you.
Please refer to the screenshot bellow. Take note that the shortcode for [av_one_third first] is not being processed and instead it is just outputting the shortcode itself. This is breaking the layout of what I have setup.
Thank you.
Hey Rikard, thank you for your reply. This is a live website and one I am very protective off, as such I am a bit hesitant to provide admin access but I am more than happy to follow your troubleshooting steps and comply with any instructions.
I am a developer myself so I have no issues with digging through. To that end, I am providing some of the info I am certain you would like to have a look at in the private section.
Thanks!
- This reply was modified 8 years, 11 months ago by momon.
Any updates here?
Dude, that is the *thing* right there, love this new element! Thanks so much! With every update I am now more convinced that this is the best theme EVER!
Thanks!
- This reply was modified 9 years, 8 months ago by Yigit.
Nevermind, I figured it out. I had accidentally hidden it through CSS.
You can close / delete this.
Actually I just noticed that the ones for video file types are not showing either. They were showing before I am pretty sure, so I am not entirely clear on what has happened.
Elliott, did you read my first post?
I don’t see a subnav widget and this appears at the most top of the sidebar (on top of my first widget) so I do not think its a widget.
To clarify I know there is a theme option to disable it site wide. What I meant to ask is if there is a way to do it selectively on some pages (similar to how one can choose to enable / disable the sidebar individually on each page).
Thanks.
Perfect, that worked!
Nice tip, thanks!
Thanks Kriesi for the find. Unfortunately it did not work, the author page was remain unchanged when I added the filter.
I tried this with portfolio as well as other custom post types I have setup and it did not work. I tried it also with ‘page’ as he suggests in the article also but that didn’t yield any different results. Seems like the function is not doing anything at all.
Thank you, I figured it out.
The problem was that I already had a function on my child theme that was taking precedence over the main theme file, so my changes on the main theme file where being ignored.
Instead of adding ‘author’ on the main theme file I did it on my child theme’s function.php like this:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_cpt_args', 1); function avf_portfolio_add_cpt_args($args) { $args['hierarchical'] = true; $args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'page-attributes','author'); return $args; }
This worked as expected.
Thanks.
Thanks elliot, I had tried doing this before:
‘supports’ => array(‘title’,’thumbnail’,’excerpt’,’editor’,’comments’, ‘author’)
I did it on the main theme and there was still no author box present on my portfolio items.
Thanks.
Excellent, thank you very much!
Nice, thank you Kriesi, as I don’t see the quick fix here I am assuming this will be pushed on the next theme update? I’m okay with that, just looking to double check.
Cheers
November 4, 2014 at 11:27 pm in reply to: Permalink for custom taxonomy on portfolio entries #346220I was able to figure this one out guys, sorry.
I was using a plugin to customize the permalinks on custom post types and the plugin had a checkbox for:
Use custom permalink of custom taxonomy archive. If you check,The custom taxonomy’s permalinks is https://***.com/post_type/taxonomy/term.
So unchecking that option fixed my issue.
I am not aware yet if this has broken something else anywhere on the website but on initial inspection everything seems to be working.
Thanks!
-
AuthorPosts