I would like to know if there is a way to customise the "column structure" of the Divi Builder.
Divi offers some column structure and we can do a lot of things with speciality section I already know that.
My question is how to add in this list of structure, my own structure
List
For example: It is impossible to have a (2/5 + 1/5 + 1/5).
I have never found a solution for this, Always the answers are "Use speciality section" or "set the width of the column".
Related
1) I want to create an image slider like here: https://rosaliedemo.wordpress.com/ (I'm using the same Wordpress Theme). There is no widget available to achieve that. Notice that those pictures are linked to a specific post I made. Is that a popular widget or plugin I need to implement somehow?
2) Secondly I want that the latest posts are seperated in 2 colums which already works. But I want that the first latest post is only one column.
How can I achieve that?
Answering your questions:
That Slide Images is a Plugin, here you can find it: http://www.myjqueryplugins.com/jquery-plugin/flexslider
I really don't understand at all your question, you want to divide a post in columns? I use to used this plugin to make columns inside posts:
https://wordpress.org/plugins/column-posts/
Let me know if it helps.
Can anyone enlighten me how to make a "Related Content View" but only by titles.
I know how to do it by taxonomy terms and such I don't want that. I only want it to be related by the terms in the titles of the articles. I'm trying this for days now.
For example, lets suppose I have an article with the title: "Stackoverflow Product Tutorial by Awesomeness People"
I want to make related content View with other articles, with a contextual filter by the words "Stackoverflow", "Product", "Tutorial", "by", "Awesomeness" and "People"...
I just want related content filtered with the words from titles, to show other articles with this same words. If possible excluding words with less than 5 characters.
I think this is impossible, or at least I can not do it.
Thank you in advance
I've had success using the similar module for doing just this. It uses MySQLs FULLTEXT search.
There is also a comparison of other modules that offer similar functionality on drupal.org.
I am biased, but here is another module for Related Content:
https://drupal.org/project/shareaholic
I am making a theme. There I want to add extra fields for each menu items ( Appearance > Menus and i.e). In the picture below I want to add some extra form fields ( like radio button, textarea and etc. ) under the field "Description":
Is there any way or tutorial about how can I do this?
I was looking for the same thing.
I found these, all of which work differently.
https://gist.github.com/kucrut/3804376
simple to use and straightforward if you plan to build an elaborate class
(note: with mods this could be used for checkboxes, radio, color pickers, ect)
https://wordpress.org/plugins/sweet-custom-menu/
This worked well, very simple, adds a txt field.
(note: it overrides the whole wordpress_walker class)
http://www.johnmorrisonline.com/how-to-add-a-fully-functional-custom-meta-box-to-wordpress-navigation-menus/
This is very different, it adds an entire mettabox type to the admin menu panel on the LEFT. I elected to use this as I was building my own version of a "mega menu" and wanted to add widgets. With enough work on this item and the one above anything is possible.
Good luck!
It all depends on what you want an extra field for, but sometimes this kind of problem can be resolved by looking at an alternative approach: Add in a shortcode in your menu, giving you the programmatic flexibility to customise your menu item output beyond what is offered by WP.
I'm not sure if this is a general web design or Wordpress question.
I have a simple demo here to illustrate my question.
http://www.ttmt.org.uk/forum/wp/
It's just a simple 2 column responsive layout.
My simple question is how do I spilt the content between the two columns.
The page will be a Page in Wordpress and not posts (I think).
I wanted to create a page in Wordpress and place the text on the content area
There is one content area in Wordpress, is there a way to split this content
so I can say this is the left column, this is the right column.
The text will all be on the same subject but I need to split it between two columns.
Thanks in advance for any help.
If you are asking for how to make three columns out of the existing two than have a look here. If you are looking for a way to make it possible to enter the content in a way that you are able to output the different columns in different places in the theme, than there are a lot of ways.
In general you need some kind of »container« for each column, so you could start by adding div-containers by using the plain text editor when creating a post or page. You can also use the custom fields to enter more columns. There are also plugins available (I never used one for this) and last but not least: you can create your plugin and hook into the page/post-edit page and add additional fields to the input field. With such a plugin you also create a custom post type and hook only into its editing form.
The solutions range from »cheap and fast« to »rather complex« and it depends how comfortable the editing should or has to be. If it is only for you than simple hacks in the editor might satisfy your needs, but if it is for a client who is not that good in html you should consider something »stronger«.
I think this is design issue rather than Wordpress. Wordpress fetch content as a single item and displays it. If you want to display the content in multiple columns then you can use jQuery plugins like http://www.vanderlee.com/martijn/?page_id=229
You could split your content into column using the column shortcodes plugin from wordpress.org
Asked the same question here but got no answer, so I'm trying here instead :)
Hey,
I'm working on a site somewhat similar to Behance.
To make you understand what I'm talking about, I'll explain a little bit;
I got a content type called say... "Content", which can go into three different categories, "Category 1", "Category 2" and "Category 3".
Then, I got a page called "Content filter" where I can see all the content in the different categories.
On this page I'm able to filter what should be shown by choosing category and time (time since uploaded content).
So if I choose Category 1 and 1 Month or something like that, it will filter the content on the page to what I choose, without uploading the page. So I would call it something like "Live content filter", I hope you get the idea.
Anyways,
I know how to make all this, but then it's not filtering without going to another page, and I have to make way too many views.
Hopefully someone can help me with this, would be really great.
You would want to set your View setting where it says, Use AJAX: No to "Yes". That way and exposed filters / pagers will dynamically load the filtered content without doing a page reload or going to another page. You may have to experiment with using a "Block" display vs. a "Page" (URL path) display. You may also need to use Views Arguments as a way on cutting down on the number of Views you need to create.