pgerhard@hotmail.com
Forum Replies Created
-
Hello
This is an office computer so I am not able to update it. There are still a lot of people using outlook 2013. I think you should try to be compatible with it
Kind regards
PaulForum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windowi don’t really need so far the Pro features or the support… Is there any way to make a donation to support the plug-in? I think there should be an option…
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windowit works really well… thanks
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windowthat would be great thanks
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windownono it works perfectly for me, take a look at
http://amanoarchitects.eu.freepgs.com/works/
i added the class right after the link tag
// Add link around item if (link && item.parent('a').length == 0) { item.wrap('<a class="fancybox-iframe" href="' + link + '" target="' + link_type + '"' + rel + '></a>'); }thanks a lot… I think it would be a good addition to the plug in, it looks fancy (haha)
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windowHey brechts, did you have a chance to look into this?
In the meantime if I wanted to modify the plugin, where would I find the code which outputs the grid?
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Open portfolio items in modal windowgreat..
in the meantime you could link the functionality to
https://wordpress.org/plugins/easy-fancybox/
just by adding the class=”fancybox-iframe” that plug in can open the links in modal window. And I could configure it with this plug in until you have official added it?
just an idea
ps: where do i get to buy the full version?
Forum: Plugins
In reply to: [WP Ultimate Post Grid] No posts showing – only filtershaha this also was my mistake
looking at this page: http://codex.wordpress.org/Post_Types
– i already then have a custom post type created by Types. Including a slug /portfolio/. am I correct to understand that the new type has been registered.
I should create a single post page ex: single.portfolio.php where {post_type} is the $post_type argument of the register_post_type() function?
and query the post type in the loop to get the content do display on that page? and then decide whatever is displayed in this template? How will WP know which template to use for post type portfolio? At the moment it takes post.php I think.
I know how to create a theme and apply it to a page.
What i do not get is, type content is displayed using a template – default page template – without the need for views:
http://amanoarchitects.eu.freepgs.com/portfolio/school-1
this is a page? then why in the admin/edit page I cannot see the page attribute and change the template used to display that page.
I don’t want to pay for the views module sorry. I want to modify a template and display the type content using this template
where in Types, is decided the template to use to display the content.
Sorry I mean to write ‘Page attributes’ (especially the page template selector) in content created using Types plugin…
It seems by default it displays content using default template.
see test page here: http://amanoarchitects.eu.freepgs.com/portfolio/school-1
the Type I created is called ‘Portfolio’
seems need to modify this:
body.template-front-page .site-content {
width: 69% !important;
}wonder what was the rationale for putting widgets below on that page…
one more explanation, I am using the additional widgets for homepage
Forum: Themes and Templates
In reply to: How Do I Change the Width of my Content Area of my website??hello,
probably the question was too vast and newbie, a lot of people will assume these questions are not worth their time as the OP should first do some research before posting.
But not me.
So what you first need to understand is that wordpress installs in a directory on your server, if you use XAMPP it will be in HTDOCS folder.
usually within this directory will be the ‘theme’ folder, it will include several sub directories and files which gives the website your look and feel.
you can modify the theme of your wordpress site as much as you like, but a clever way to do is to create a child theme. Basically this is a copy of some files from the theme in the theme folder (ex Twenty Eleven).
If I would want to change the width, or anything on a theme I would proceed as such:
select a theme I like, such as twenty twelve
create a new folder in theme folder and call it ‘twenty twelve child’
create a file called ‘style.css’ into twenty twelve child folder
declare the new theme by adding something like:/*
Theme Name: Twenty Twelve Child
Description: Child theme for Twenty twelve
Author: Paul
Template: twentytwelve
*/on top of the style css.
The CSS file controls fonts, block dimensions, divs, etc look and feel. To know what and how to modify I would use FireFox and extension ‘firebug’ i would activate it and navigate over the area on the page you want to modify. You can see there that the style css is
body.template-front-page .site-content, body.attachment .site-content, body.full-width .site-content {
width: 100%;
}I would copy this code in new style.css located in twenty twelve child folder to
body.template-front-page .site-content, body.attachment .site-content, body.full-width .site-content {
width: 70% !important;
}note the important declaration is not always necessary, use it if the change isn’t visible
i suggest you read on how to create child themes and syntax of CSS and you will be all good