-
AuthorSearch Results
-
February 27th, 2016 at 14:13 #35789
In reply to: How to remove previous & next posts from bottom?
Zed
Cryout Creations mastermindBreadcrumbs are the little location map at the top of the page.
Those two links are the previous/next post navigation, which you can hide with CSS:
#nav-below { display: none; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 27th, 2016 at 14:10 #35788In reply to: Presentation page and layout issues
Zed
Cryout Creations mastermindPaulette, I see you’ve got the presentation page back.
Marilynn, there is no error in the theme. There problem comes from one of your widgets’ content:
<iframe src="https://www.fiverr.com/anywhere/anywhere_widget/56988c626175783ba5814f00" width="190" height="75" frameBorder="0" scrolling="no">
This iframe is never closed, making the browser believe the entire right sidebar is part of the iframe and gets it displayed on the left sidebar. Correct your widget code.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 27th, 2016 at 13:59 #35785Zed
Cryout Creations mastermindYou are using a static page on the homepage.
Where was your RevSlider previously displayed? Was it part of the page content?If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 16th, 2016 at 20:32 #35685In reply to: Search box in Footer
David B
Hi Zed
It’s saved to display in the Footer and not the header.
It doesn’t show in the Footer on the front end.Social Media icons are set to display in the footer also, if that makes any difference.
The site:
http://susannemarie.org/February 16th, 2016 at 20:20 #35682In reply to: Archive Label
David B
Thanks, Zed.
Categories displays the large block above the Content block so it’s not clear to me how any Structure settings change that.Titles seems to be the relevant one but that changes content Titles which I want.
But as mentioned, the above worked. I tested it on Archives and it works there too.
February 14th, 2016 at 15:31 #35614In reply to: Cryout Column translation
Zed
Cryout Creations mastermindWhen adding column widgets to the columns areas, if you use Polylang (at least – I cannot test with WMPL) you have the option to display that column widget for all languages or a single language.
You can create separate widgets with the properly localized version, and set them one for each language.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 13th, 2016 at 11:35 #35583In reply to: customizing the layout setting
Zed
Cryout Creations mastermindWe’re looking into this issue. Basically if you have a notice displayed in the dashboard it gets integrated into the theme’s accordion, in the Layout section, preventing you from accessing the actual layout settings.
Leaving Layout open and saving the theme settings will reload the page but with the Layout options now always visible. You can use this workaround until we solve this.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 13th, 2016 at 11:30 #35581Zed
Cryout Creations mastermindThe theme can display between one and 4 (widget) columns below the slider.
Under those, the posts can be set to be displayed either in one or two columns.The (widget) columns will be displayed in the same number of (configured) columns per row, so you need to use a dividable number of widgets if you want them to show properly aligned.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 13th, 2016 at 11:27 #35580In reply to: Hiding presentation page columns on mobile
Zed
Cryout Creations mastermindAdding
body #front-columns { display: none; }
to the media query you already use should do it.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 13th, 2016 at 11:25 #35579In reply to: Tempera front page
Zed
Cryout Creations mastermindThe theme’s presentation page does no display a sidebar. If you use a static page, that page will follow the theme’s general site layout option.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 13th, 2016 at 11:25 #35578In reply to: Posts per row problem
Zed
Cryout Creations mastermindThe Posts per Row option controls how posts on the presentation page are displayed.
Other post lists (categories, archives) are controlled by the Magazine Layout option under Post Excerpt Settings.
If settings don’t take effect after changing them, check if you have any caching plugins activated or not. If yes, clear the cache or disable the plugin while you’re setting up the site.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 9th, 2016 at 21:34 #35542In reply to: Menu Navigaion – Drop downs
Zed
Cryout Creations mastermindThe top and footer menus do not display sub-menu items. They are designed for one-level menus only.
Create an additional custom menu and place the services only in one of those menus (if you want them to stand out).
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 9th, 2016 at 21:28 #35537In reply to: layout settings will not display
Zed
Cryout Creations mastermindWe’re looking into this issue. Basically if you have a notice displayed in the dashboard it gets integrated into the theme’s accordion, in the Layout section, preventing you from accessing the actual layout settings.
Leaving Layout open and saving will reload the page but with the Layout options now always visible. You can use this workaround until we solve this.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 9th, 2016 at 21:13 #35531In reply to: Static page with presentation page
Zed
Cryout Creations mastermindUnfortunately no. WordPress theme review guidelines explicitly state a theme must display the static page if set.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 7th, 2016 at 22:42 #35507In reply to: Primary Menu No Longer Centered
Richard
Since there is no official response on this, I used the following code to fix the centering problem:
/* Menu Hack */
#prime_nav {
clear:left;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
left:50%;
text-align:center;
}
#prime_nav li {
display:block;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
right:50%;
}Place it at the end of your CSS file and you should be fine. Here’s an explanation of what the code does: http://matthewjamestaylor.com/blog/beautiful-css-centered-menus-no-hacks-full-cross-browser-support
You’ll also need to put this in the custom CSS area found in Tempera Settings > Miscellaneous Settings, or any dropdown ul’s box shadow will extend beyond the ul:
#access ul ul{box-shadow:none}
I don’t know if this problem was caused by me running a child theme, but I highly doubt that because my menu styling was untouched except for color mods and mobile fixes.
Hope that helps you out, Jamal (and anyone else having this problem).
P.S. I meant this problem also affected the latest version of Nirvana in my first post. XP
February 7th, 2016 at 21:38 #35505In reply to: Archive Label
David B
Figured this one out. The tag is:
.pad-container {display: none;}
February 3rd, 2016 at 02:55 #35469MahaloMarlin
We had the same trouble, but in Tempera. Zed’s post of 1/30 solved it for us. In short:
“If you have a static page set as the homepage, after the update WordPress will display that instead of the presentation page. To re-enable the presentation page, the Frontpage displays option (under Settings > Reading) need to be set to Your latest posts.”
January 30th, 2016 at 23:29 #35421In reply to: About widgets on presentation page !
Zed
Cryout Creations mastermindThe presentation page is a special purpose section and does not display the sidebar(s).
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 30th, 2016 at 23:28 #35420In reply to: featured image on pages
Zed
Cryout Creations mastermindFeatured images are displayed on post excerpts (when enabled). They are not displayed inside full posts or full pages as there the images can be inserted in the content directly.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 30th, 2016 at 23:23 #35416Zed
Cryout Creations mastermindNirvana will always display latest X from all posts on the presentation page.
This is a requirement by the theme review guidelines that we have to follow to be accepted in the themes repository.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 30th, 2016 at 22:15 #35398In reply to: Presentaion Page and Slideshow missing after update
Zed
Cryout Creations mastermindTempera previously had a bug by which it displayed the presentation page (minus some styling) even when a static page was set as the homepage.
WordPress theme guidelines request that setting a static page takes precedence over theme settings, so we have corrected this in 1.4.0.1.If you have a static page set as the homepage, after the update WordPress will display that instead of the presentation page. To re-enable the presentation page, the Frontpage displays option (under Settings > Reading) need to be set to Your latest posts.
Additionally, your Home menu item may also point to this static page (which was previously replaced by the presentation page). You will need to correct it to point to the correct home location.
Finally, if you were previously assigning a blog page under Reading, this functionality is no longer available after returning to Latest posts. The matter can be solved by assigning the Blog page (posts list) page template to the page you want the posts list to be displayed on.
I am closing this thread as it got too long and too confusing. If anyone is still having issues with the presentation page, please start a new thread.
For anyone having slider issues, please start your own thread and provide a link to the site.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 30th, 2016 at 22:02 #35393In reply to: Previewing Presentation Page
Zed
Cryout Creations mastermindBrian, I have answered your support questions and explained why the presentation page (and WordPress’ default homepage) are never displayed in the list of (static) pages.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 30th, 2016 at 21:50 #35388In reply to: Date and time
Zed
Cryout Creations mastermindThe date and time are part of the meta bar. If the bar is hidden (it has an option of its own) then none of its content is displayed either.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 26th, 2016 at 09:03 #35336In reply to: Previewing Presentation Page
Brian Moore
Since no ideas were forthcoming and I wanted to get on, I domated the $25 for customer supports and about 8 hours ago I did receive an email saying: ‘Check that the theme’s presentation page in the theme’s settings (under Presentation Page Settings) is set to ‘Enabled’ and also check that WordPress Settings > Reading options are set to display Latest Posts for the homepage (and not a static page).
Setting a static page there has priority over the theme’s presentation page and is displayed instead.’
I did have the Presentation Page enabled’ but hadn’t set the WordPress Reading settings to Latest post, rather than Static Page. I altered this and saved changes but sadly, it has made no difference. I did respond to the customer suport to say I’d tried this but it didn’t work and asking if they have any more ideas. I haven’t yet heard back but as it is a .eu site, they were probably getting some much needed sleep.
However, if anyone else has any good ideas, please feel welcome to offer them as I’m stuck at the moment.
January 21st, 2016 at 21:11 #35301In reply to: Presentaion Page and Slideshow missing after update
cheryl
I am having the same problems. My presentation page is present but they whole layout that I created is gone. No sliders. nothing. The fixes recommended are not working. My presentation page – home page is there. But sliders and layout are all gone. when go into settings, there isn’t a section that says “reading set front page displays” And in settings it show that I have my sliders set up, it shows my photos uploaded and the headings and sub headings – but none of it displays
January 20th, 2016 at 20:40 #35290In reply to: presentation page
James
Hello,
I am writing about an issue I am having with the Parabola “Presentation Page” settings on our Web site. The issue we are having is with the column graphics on the “Presentation Page” when the Web site is viewed on a mobile or iPad device when rotated.
The presentation page has several segments that make up the page: Header, footer, slides, and presentation page columns. We currently have the settings set to show one of five different graphics displaying in the center “Slides” graphical element on the presentation/home page of the site. Beneath that main graphic element, there is a section labeled “Presentation Page Columns.” We currently have that option set to show three of the four available graphic items in the presentation page column settings under theme appearance.
So, the issue is when the iPad (or cellphone) is in the portrait display mode. In this mode the Web page Center graphic resizes and displays the images properly; however, the three graphic elements below it do not. They wrap instead of resizing? When the iPad or phone is rotated back to landscape mode everything displays again as expected.
It seems that the “Slides” section of the presentation/home page has an attribute applied to it that causes the “Slides” element to resize the displayed content based on the orientation/page size of a device. But, the “Presentation Page Columns” placeholder section does not seem to have this same/similar attribute and wraps the the graphics instead of resizing them.
Is this a bug or feature? Please advise.
Thank you!
January 20th, 2016 at 11:21 #35285In reply to: Settings not loading
Ditte
Can I install the Cryout Serious Theme Settings plugin with the Tempera them version 1.3.3 (WordPress 4.4.1) without influencing on my other changes/settings?
I have same problem, settings are not shown. Only “Reset to Default” and “Save Changes” are displayed.
Unfortunately I don’t dare to update the theme, as I have changed quite a few settings without using child theme, so I guess all these settings will disappear if I update the theme, right?January 20th, 2016 at 05:36 #35283In reply to: Settings not loading
Kathy
HELP! I am using the Tempera theme with WorPress 4.4.1. I can not change the Tempera settings because they are not shown. Only the Reset to Default and Save Changes buttons are displayed.
January 19th, 2016 at 19:38 #35276In reply to: Settings not loading
Marjorie
The Tempura Setting box is missing when I click to update it. The settings section tabs are completely gone and not displaying. I was in it around 10 days ago and it was there. Help!
January 19th, 2016 at 15:42 #35274In reply to: slider height problem: read more button disappeared
Nadja
Thanks a lot Zed, I fixed it.
Yes Yuri, you need to cut the photos so they are as big as the slider. I changed the slider’s settings to more height as with a narrower one the “read more” button was not displayed. If the slider is wide enough (600px in my case), text and button are displayed.
Nadja -
AuthorSearch Results